Updated breakpoints

This commit is contained in:
Pedro Reis 2019-08-27 15:29:50 +01:00 committed by GitHub
parent 20d55874a9
commit 2a161e20d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -29,9 +29,10 @@ $base-spacing-unit: ($base-font-size * $base-line-height) * 1px;
* Breakpoints
*/
$breakpoint-lg: 1200px;
$breakpoint-md: 768px;
$breakpoint-sm: 480px;
$breakpoint-lg: 1280px;
$breakpoint-md: 1024px;
$breakpoint-sm: 768px;
$breakpoint-xs: 480px;
$breakpoints: (
'lg' '(min-width: ' + $breakpoint-lg + ')',