Skip to content

Commit

Permalink
Make $breakpoints as default value
Browse files Browse the repository at this point in the history
  • Loading branch information
Vilican committed Apr 9, 2022
1 parent dc86645 commit 9c6744c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions _sass/lib/src/_variables.scss
Original file line number Diff line number Diff line change
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 9c6744c

Please sign in to comment.