Skip to content

Commit

Permalink
fix(sass): update stylesheet with correct keys (#987)
Browse files Browse the repository at this point in the history
  • Loading branch information
CaerusKaru committed Jan 13, 2019
1 parent c1fc857 commit 002eb66
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/lib/core/sass/_layout-bp.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,20 @@ $breakpoints: (
// Material Design breakpoints
// @type map
$overlapping-gt: (
xs: 600px,
sm: 960px,
md: 1280px,
lg: 1920px,
gt-xs: 600px,
gt-sm: 960px,
gt-md: 1280px,
gt-lg: 1920px,
) !default;

// Overlapping breakpoints that are less than defined
// Material Design breakpoints
// @type map
$overlapping-lt: (
sm: 599px,
md: 959px,
lg: 1279px,
xl: 1919px,
lt-sm: 599px,
lt-md: 959px,
lt-lg: 1279px,
lt-xl: 1919px,
) !default;


Expand Down

0 comments on commit 002eb66

Please sign in to comment.