-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmoreFixes.css
More file actions
65 lines (50 loc) · 1.2 KB
/
moreFixes.css
File metadata and controls
65 lines (50 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/* 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;
}
section[class*="mobileHeaderCollapsed_"] {
display: none !important;
}
/* Hide app launcher (broken and useless) */
div[class^="channelAppLauncher_"] {
display: none;
}
div[role="dialog"] {
width: var(--screen-width) !important;
div[class*="root"] {
margin: 0;
}
}
/* == PLUGIN CSS == */
.vde-close-button {
margin-left: auto;
}
.vde-dev-options {
margin-top: 20px;
}
.vde-button-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.vde-icon-preview {
width: 130px;
border-radius: 100px;
margin-bottom: 20px;
}
/* Fix equicord insanities */
.vc-plugins-info-card {
height: unset !important;
}
div[class^="prompt_"] {
width: 95vw !important;
div[class^="scrollerContent"] {
padding: 20px !important;
}
}