updated media queries

This commit is contained in:
Pedro Reis 2015-06-15 16:23:09 +01:00
parent 79d80bfa4e
commit e81afa6129
1 changed files with 3 additions and 3 deletions

View File

@ -27,8 +27,8 @@ $breakpoint-lg: 1200px;
$breakpoints: (
'lg' '(min-width: ' + $breakpoint-lg + ')',
'md' '(min-width: ' + $breakpoint-md + ') and (max-width: ' + ($breakpoint-lg - 1) + ')',
'sm' '(min-width: ' + $breakpoint-sm + ') and (max-width:' + ($breakpoint-md - 1) + ')',
'xs' '(max-width: ' + ($breakpoint-sm - 1) + ')'
'sm' '(min-width: ' + ($breakpoint-sm + 1) + ') and (max-width:' + ($breakpoint-md - 1) + ')',
'xs' '(max-width: ' + $breakpoint-sm + ')'
);
@ -38,4 +38,4 @@ $breakpoints: (
$grid-max-width: 1200px;
$grid-columns: 12;
$grid-gutter: $base-spacing-unit;
$grid-gutter: $base-spacing-unit;