Update _vars.scss
This commit is contained in:
parent
858bcd1311
commit
ec379a3503
|
@ -1,4 +1,4 @@
|
||||||
/*
|
/**
|
||||||
* Base values
|
* Base values
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ $base-line-height: 1.5;
|
||||||
$base-margin-bottom: ($base-font-size * $base-line-height) * 1px;
|
$base-margin-bottom: ($base-font-size * $base-line-height) * 1px;
|
||||||
|
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* Breakpoints
|
* Breakpoints
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -20,20 +20,20 @@ $breakpoint-ld: 1200px;
|
||||||
|
|
||||||
$breakpoints-list: (
|
$breakpoints-list: (
|
||||||
'ld' null,
|
'ld' null,
|
||||||
'md' '(min-width:' + ($small-device + 1) + ') and (max-width:' + ($large-device - 1) + ')',
|
'md' '(min-width:' + ($breakpoint-sd + 1) + ') and (max-width:' + ($breakpoint-ld - 1) + ')',
|
||||||
'sd' '(max-width:' + $small-device + ')'
|
'sd' '(max-width:' + $breakpoint-sd + ')'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* Scaffolding
|
* Scaffolding
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$max-width: 1200px;
|
$max-width: 1200px;
|
||||||
$grid-columns: 12;
|
$grid-columns: 12;
|
||||||
$gutter: 20px;
|
$gutter: $base-margin-bottom;
|
||||||
|
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* Custom variables
|
* Custom variables
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue