Skip to content

Instantly share code, notes, and snippets.

@SandeMC
Last active November 13, 2025 00:34
Show Gist options
  • Select an option

  • Save SandeMC/dec000c8b74a76349d65dbdb8983c22c to your computer and use it in GitHub Desktop.

Select an option

Save SandeMC/dec000c8b74a76349d65dbdb8983c22c to your computer and use it in GitHub Desktop.
My own Quick CSS settings for every horrible design decision Discord does
: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