diff --git a/assets/scss/utilities/_variables.scss b/assets/scss/utilities/_variables.scss index 1334f8c..35d582b 100755 --- a/assets/scss/utilities/_variables.scss +++ b/assets/scss/utilities/_variables.scss @@ -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; \ No newline at end of file +$grid-gutter: $base-spacing-unit;