Last active
November 13, 2025 00:34
-
-
Save SandeMC/dec000c8b74a76349d65dbdb8983c22c to your computer and use it in GitHub Desktop.
My own Quick CSS settings for every horrible design decision Discord does
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :root { | |
| /* Changes the font in codeblocks to the one used in Visual Studio Code because I like that better */ | |
| --font-code: "Consolas"; | |
| } | |
| /* Hides the sticker button on the message bar */ | |
| div[aria-label*="gift"] { | |
| display: none; | |
| } | |
| /* Hides the sticker button on the message bar */ | |
| div:has(> div[class*="stickerButton"]) { | |
| display: none; | |
| } | |
| /* Hides the app launcher button that's separate from the message bar */ | |
| div[class*="app-launcher"] { | |
| display: none !important; | |
| } | |
| /* Resizes the reactions closer to the old size because why are they so large now */ | |
| div[class*="reactions"] { | |
| zoom: 0.9; | |
| } | |
| /* Resizes the image containers to be slightly smaller */ | |
| div[class*="visualMediaItemContainer"] { | |
| zoom: 0.9; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment