16 lines
614 B
CSS
16 lines
614 B
CSS
/* 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;
|
|
}
|
|
|
|
/* Workaround for making things in the draggable area clickable again on macOS */
|
|
.platform-osx [class*=topic_], .platform-osx [class*=notice_] button {
|
|
-webkit-app-region: no-drag;
|
|
}
|