/* Hides the Discover button in the guild list */
div[class^="footer_"] {
display: none;
}
/* Hides the Nitro button on the DM page */
ul[role="list"] li[class^="channel"]:nth-child(3) {
display: none;
}
/* Hides the Shop button on the DM page */
ul[role="list"] li[class^="channel"]:nth-child(4) {
display: none;
}
/* Get rid of the insane and weird padding around the message input box */
form[class*="ChatInput"] {
padding-left: 10px;
padding-right: 10px;
}
form[class*="ChatInput"] {
--custom-chat-input-margin-bottom: 10px;
}
Hope these aren't considered too simple (as per the rules), just a lot of stuff that annoyed me and I figured I'd help save some time for others who are similarly annoyed.