add scrollbar workaround because discord dum

This commit is contained in:
Vendicated
2024-04-20 17:16:29 +02:00
parent 617ef0fa19
commit ab9e8579ee
2 changed files with 7 additions and 1 deletions

11
src/renderer/fixes.css Normal file
View File

@@ -0,0 +1,11 @@
/* Download Desktop button in guilds list */
[class^=listItem_]:has([data-list-item-id=guildsnav___app-download-button]),
[class^=listItem_]:has(+ [class^=listItem_] [data-list-item-id=guildsnav___app-download-button]) {
display: none;
}
/* FIXME: remove this once Discord fixes their css to not explode scrollbars on chromium >=121 */
* {
scrollbar-width: unset !important;
scrollbar-color: unset !important;
}