-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Expand file tree
/
Copy pathindex.scss
More file actions
28 lines (25 loc) · 758 Bytes
/
index.scss
File metadata and controls
28 lines (25 loc) · 758 Bytes
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
@layer hidden {
// custom layer to hide elements without using !important
// (as long as this layer is higher than custom-styles)
// this is to fix issues with tailwinds hidden class
// while still working for scss files
.hidden {
display: none;
}
// same for invisible
.invisible {
opacity: 0;
pointer-events: none;
visibility: hidden;
}
}
@layer custom-styles {
@import "buttons", "fonts", "404", "ads", "account", "animations", "caret",
"commandline", "core", "inputs", "keymap", "login", "monkey", "nav",
"notifications", "popups", "profile", "scroll", "settings",
"account-settings", "leaderboards", "test", "loading", "friends",
"media-queries";
.chartCanvas {
width: 100% !important;
}
}