1
Fork 0

fix scss lint

This commit is contained in:
Jake Howard 2016-08-25 21:58:15 +01:00
parent ae7d29e05f
commit d45933782e
Signed by: jake
GPG key ID: 57AFB45680EDD477
3 changed files with 4 additions and 2 deletions

View file

@ -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
- -

View file

@ -8,5 +8,5 @@
} }
.text-shadow { .text-shadow {
text-shadow: 0px 5px 3px $brand-grey-dark; text-shadow: 0 5px 3px $brand-grey-dark;
} }

View file

@ -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;
} }