Add max-width
Sass variable (#2093)
This commit is contained in:
parent
29acb2a0bf
commit
e4c0689cda
4 changed files with 4 additions and 3 deletions
|
@ -26,7 +26,7 @@
|
||||||
font-family: $sans-serif-narrow;
|
font-family: $sans-serif-narrow;
|
||||||
|
|
||||||
@include breakpoint($x-large) {
|
@include breakpoint($x-large) {
|
||||||
max-width: $x-large;
|
max-width: $max-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav {
|
nav {
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
animation-delay: 0.15s;
|
animation-delay: 0.15s;
|
||||||
|
|
||||||
@include breakpoint($x-large) {
|
@include breakpoint($x-large) {
|
||||||
max-width: $x-large;
|
max-width: $max-width;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,7 @@
|
||||||
animation-delay: 0.15s;
|
animation-delay: 0.15s;
|
||||||
|
|
||||||
@include breakpoint($x-large) {
|
@include breakpoint($x-large) {
|
||||||
max-width: $x-large;
|
max-width: $max-width;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -136,6 +136,7 @@ $medium: 768px !default;
|
||||||
$medium-wide: 900px !default;
|
$medium-wide: 900px !default;
|
||||||
$large: 1024px !default;
|
$large: 1024px !default;
|
||||||
$x-large: 1280px !default;
|
$x-large: 1280px !default;
|
||||||
|
$max-width: $x-large !default;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Grid
|
Grid
|
||||||
|
|
Loading…
Reference in a new issue