add scrollbar workaround because discord dum

This commit is contained in:
Vendicated 2024-04-20 17:16:29 +02:00
parent 617ef0fa19
commit ab9e8579ee
No known key found for this signature in database
GPG key ID: D66986BAF75ECF18
2 changed files with 7 additions and 1 deletions

View file

@ -3,3 +3,9 @@
[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;
}

View file

@ -4,7 +4,7 @@
* Copyright (c) 2023 Vendicated and Vencord contributors
*/
import "./hideGarbage.css";
import "./fixes.css";
import { isWindows, localStorage } from "./utils";