Skip to content

Commit

Permalink
Fixed #111 - Make $breakpoints as default value
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Apr 22, 2022
2 parents fcd91ff + 9c6744c commit 2fa0ba5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions _sass/lib/src/_variables.scss
Expand Up @@ -13,8 +13,8 @@ $helperTextMargin: .25rem !default;
$spacer:1rem !default;

$breakpoints: (
'sm': 576px,
'md': 768px,
'lg': 992px,
'xl': 1200px
);
'sm': $sm,
'md': $md,
'lg': $lg,
'xl': $xl
) !default;

0 comments on commit 2fa0ba5

Please sign in to comment.