fix scss lint
This commit is contained in:
parent
ae7d29e05f
commit
d45933782e
3 changed files with 4 additions and 2 deletions
|
@ -55,6 +55,7 @@ rules:
|
||||||
single-line-per-selector: 0
|
single-line-per-selector: 0
|
||||||
force-pseudo-nesting: 0
|
force-pseudo-nesting: 0
|
||||||
force-element-nesting: 0
|
force-element-nesting: 0
|
||||||
|
placeholder-in-extend: 0
|
||||||
nesting-depth:
|
nesting-depth:
|
||||||
- 2
|
- 2
|
||||||
-
|
-
|
||||||
|
|
|
@ -8,5 +8,5 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-shadow {
|
.text-shadow {
|
||||||
text-shadow: 0px 5px 3px $brand-grey-dark;
|
text-shadow: 0 5px 3px $brand-grey-dark;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,14 +3,15 @@ header {
|
||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: $font-size-h1 * 1.5;
|
|
||||||
@extend .text-shadow;
|
@extend .text-shadow;
|
||||||
|
font-size: $font-size-h1 * 1.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
.page-scroll {
|
.page-scroll {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 10%;
|
bottom: 10%;
|
||||||
color: $white;
|
color: $white;
|
||||||
|
|
||||||
& > i {
|
& > i {
|
||||||
font-size: $font-size-h1;
|
font-size: $font-size-h1;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue