1 | @import './vars.scss'; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
2 | @import './functions.scss'; |
||
0 ignored issues
–
show
|
|||
3 | |||
4 | *, |
||
5 | *::after, |
||
6 | *::before { |
||
7 | margin: 0; |
||
0 ignored issues
–
show
|
|||
8 | padding: 0; |
||
9 | box-sizing: inherit; |
||
10 | } |
||
11 | |||
12 | html { |
||
13 | min-height: 100vh; |
||
14 | } |
||
15 | |||
16 | body { |
||
17 | height: inherit; |
||
0 ignored issues
–
show
|
|||
18 | font-family: 'Exo', sans-serif; |
||
19 | color: shade($clr-white, 10); |
||
20 | box-sizing: border-box; |
||
21 | -webkit-tap-highlight-color: transparent; |
||
22 | background: #252936; |
||
0 ignored issues
–
show
|
|||
23 | background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(0,0,0,1) 0%, #252936 100%); |
||
0 ignored issues
–
show
|
|||
24 | overflow-x: hidden; // fix for page transition animation |
||
25 | } |
||
26 |