Last active
April 24, 2025 00:36
-
-
Save espimarisa/93cacb1bd61bc09d5cc7913a68ecfd02 to your computer and use it in GitHub Desktop.
Personal Discord UserCSS
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
/* this *does* make codeblocks be non-mono, and i cannot be tasked with fixing it */ | |
* { | |
/* biome-ignore lint/a11y/useGenericFontNames: you smell */ | |
font-family: "Atkinson Hyperlegible Next" !important; | |
font-weight: 400 !important; | |
} | |
/* hide nitro gift button in the input bar, language dependent */ | |
button[aria-label="Send a gift"] { | |
display: none; | |
} | |
/* hide shop, store, and library buttons in /me */ | |
*[href="/shop"], | |
*[href="/store"], | |
*[href="/library"] { | |
display: none; | |
} | |
/* hides the annoying active now pane on /me */ | |
[class*="nowPlayingColumn_"] { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment