I made a few small snippets to hide some buttons and unnecessary things:
Hide the message box from the profile
/* Hide the "message @name" box from profile */
.footer__5be3e {
display: none;
}```
Hide the "Add Friend" button from the profile
```css
/* hide "Add Friend" button from profile */
.bannerButton_fb7f94[aria-label="Add Friend"] {
display: none;
}```
Hide the "🔊 Show All" button from the bottom of the channel list
```css
/* Hide "🔊 Show All" button */
.refreshVoiceChannelsButton__29444 {
display: none;
}```
Hide the "X IN VOICE" bar from the channels list
```css
/* Hide "X IN VOICE" bar */
.voiceBar__7aaec {
display: none;
}```
~~Hide the "Edit Channel" button from the channel list
```css
/* Hide the "Edit Channel" button */
[class^=actionIcon_]:has(>[d^="M10.56 1.1c-.46.05-.7.53-.64.98.18"]) {
display: none;
}```~~
Hide the "Edit Image with Apps" button when you hover over images
```css
/* Hide "Edit Image with Apps" button */
div[aria-label="Edit Image with Apps"] {
display: none;
}```
Hide the "Delete" button when you hover over images
```css
/* Hide "Delete" button from images */
div[aria-label="Remove Message Attachment"] {
display: none;
}```
or hide all buttons when you hover over images ("Edit Image with Apps" and "Delete" buttons)
```css
/* Hide all buttons when you hover over images */
.hoverButtonGroup__06ab4 {
display: none;
}```
Feel free to tell me I did them wrong and how to make them better.
Or if there were already been made, because Discord's search sucks.