Last active
February 5, 2025 02:42
-
-
Save itsnebulalol/d520d8530e27c194c5359a5b77e9774a to your computer and use it in GitHub Desktop.
Discord extra CSS
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
/* Hide new member badge */ | |
div[class*="newMemberBadge"] { | |
display: none !important; | |
} | |
/* Hide "I'm new to Discord, say hi!" */ | |
[class^=wumpusWrapper] { | |
display: none; | |
} | |
/* Hide create invite button on channels */ | |
[aria-label="Create Invite"] { | |
display: none !important; | |
} | |
/* Hide gift button */ | |
[aria-label="Send a gift"] { | |
display: none; | |
} | |
/* Hide "Add Super Reaction" button */ | |
[aria-label="Add Super Reaction"] { | |
display: none; | |
} | |
/* Fix markdown styles */ | |
[class*=markup-] h1 { | |
margin: 25px 0 7px; | |
} | |
[class*=markup-] h2 { | |
margin: 20px 0 7px; | |
} | |
[class*=markup-] li { | |
margin: 0; | |
} | |
/* Entirely hide AKA */ | |
div.container-mAkQVR { | |
display: none; | |
} | |
/* Hide app launcher */ | |
[class*=channelAppLauncher_] { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment