Issues (576)

src/styles/base.scss (10 issues)

1
@import './vars.scss';
0 ignored issues
show
Imported partial ./vars.scss should be written as ./vars
Loading history...
2
@import './functions.scss';
0 ignored issues
show
Imported partial ./functions.scss should be written as ./functions
Loading history...
3
4
*,
5
*::after,
6
*::before {
7
  margin: 0;
0 ignored issues
show
Properties should be ordered box-sizing, margin, padding
Loading history...
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
Properties should be ordered background, box-sizing, color, font-family, height, overflow-x, -webkit-tap-highlight-color
Loading history...
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
Color literals like #252936 should only be used in variable declarations; they should be referred to via variable everywhere else.
Loading history...
23
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(0,0,0,1) 0%, #252936 100%);
0 ignored issues
show
Color literals like #252936 should only be used in variable declarations; they should be referred to via variable everywhere else.
Loading history...
Color literals like rgba(0, 0, 0, 1) should only be used in variable declarations; they should be referred to via variable everywhere else.
Loading history...
Commas in function arguments should be followed by one space
Loading history...
Color literals like rgba(2, 0, 36, 1) should only be used in variable declarations; they should be referred to via variable everywhere else.
Loading history...
Property background already defined on line 22
Loading history...
24
  overflow-x: hidden; // fix for page transition animation
25
}
26