Skip to content

Instantly share code, notes, and snippets.

@itsnebulalol
Created July 5, 2023 23:13
Show Gist options
  • Save itsnebulalol/d520d8530e27c194c5359a5b77e9774a to your computer and use it in GitHub Desktop.
Save itsnebulalol/d520d8530e27c194c5359a5b77e9774a to your computer and use it in GitHub Desktop.
Discord extra CSS
/* 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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment