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
| @use "./colors.sass"
|
| body, html
| width: 100vw
| height: 100vh
| padding: 0
| margin: 0
| overflow: hidden
|
| html
| font-size: 16px
| font-style: normal
| -webkit-font-smoothing: antialiased
| -webkit-text-stroke-width: 0.2px
| -moz-osx-font-smoothing: grayscale
|
| *
| box-sizing: border-box
|
| ::-webkit-scrollbar
| width: 12px
| height: 12px
|
|
| ::-webkit-scrollbar-track
| background: rgba(0, 0, 0, 0.1)
|
| ::-webkit-scrollbar-thumb
| background: rgba(0, 0, 0, 0.5)
|
| .hidden
| z-index: 0 !important
| display: none !important
|
|