Last active
March 29, 2025 02:20
-
-
Save MeexReay/cbfa9f5dcc4f9cec001cab19c6a1b0cf to your computer and use it in GitHub Desktop.
Fix new ugly discord design
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
/* remove titlebar */ | |
@supports (grid-template-columns:subgrid) and (white-space-collapse:collapse) { | |
.visual-refresh .base_c48ade { | |
display: grid; | |
grid-template-columns: [start] min-content [guildsEnd] min-content [channelsEnd] 1fr [end]; | |
grid-template-rows: [titleBarEnd] min-content [noticeEnd] 1fr [end]; | |
grid-template-areas: | |
"guildsList notice notice" | |
"guildsList channelsList page"; | |
} | |
} | |
[class^=bar] { | |
display: none; | |
} | |
[class^=tutorialContainer] { | |
margin-top: 10px; | |
} | |
/* remove download button from vesktop */ | |
div:has(> div > div > svg > foreignObject > div[data-list-item-id="guildsnav___app-download-button"]) { | |
display: none; | |
} | |
/* fix message prompt */ | |
[class^=channelTextArea_] { | |
margin-bottom: 8px; | |
margin-top: 10px; | |
padding: 2px 0; | |
} | |
.lottieIcon__5eb9b { | |
width: 24px !important; | |
height: 24px !important; | |
} | |
.spriteContainer__04eed { | |
--custom-emoji-sprite-size: 24px !important; | |
} | |
/* fix timestamp button from vencord */ | |
button[aria-label="Insert Timestamp"] .buttonWrapper__24af7 svg { | |
width: 22px !important; | |
height: 22px !important; | |
padding-top: 2px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for doing the hard part! A friend suggested swapping out lines 14-20 with
and line 32-36 with
so it'll hopefully survive some updates.