Update _vars.scss

This commit is contained in:
Mike Francis 2014-09-23 11:31:49 +01:00
parent 858bcd1311
commit ec379a3503
1 changed files with 7 additions and 7 deletions

View File

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