Update _defaults.scss

This commit is contained in:
Pedro Reis 2019-08-27 16:09:33 +01:00 committed by GitHub
parent 62d604bdeb
commit bf0887f123
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 7 deletions

View File

@ -23,13 +23,14 @@ $grid-columns: 12 !default;
* Breakpoints * Breakpoints
*/ */
$breakpoint-lg: 1200px !default; $breakpoint-lg: 1280px !default;
$breakpoint-md: 768px !default; $breakpoint-md: 1024px !default;
$breakpoint-sm: 480px !default; $breakpoint-sm: 768px !default;
$breakpoint-xs: 480px !default;
$breakpoints: ( $breakpoints: (
'lg' '(min-width: ' + $breakpoint-lg + ')', 'lg' '(min-width: ' + ($breakpoint-md + 1) + ')',
'md' '(min-width: ' + $breakpoint-md + ') and (max-width: ' + ($breakpoint-lg - 1) + ')', 'md' '(min-width: ' + ($breakpoint-sm + 1) + ') and (max-width: ' + $breakpoint-md + ')',
'sm' '(max-width:' + ($breakpoint-md - 1) + ')', 'sm' '(min-width: ' + ($breakpoint-xs + 1) + ') and (max-width:' + $breakpoint-sm + ')',
'xs' '(max-width: ' + $breakpoint-sm + ')' 'xs' '(max-width: ' + $breakpoint-xs + ')'
) !default; ) !default;