Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Commit 002eb66

Browse files
authored
fix(sass): update stylesheet with correct keys (#987)
1 parent c1fc857 commit 002eb66

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/lib/core/sass/_layout-bp.scss

+8-8
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,20 @@ $breakpoints: (
2929
// Material Design breakpoints
3030
// @type map
3131
$overlapping-gt: (
32-
xs: 600px,
33-
sm: 960px,
34-
md: 1280px,
35-
lg: 1920px,
32+
gt-xs: 600px,
33+
gt-sm: 960px,
34+
gt-md: 1280px,
35+
gt-lg: 1920px,
3636
) !default;
3737

3838
// Overlapping breakpoints that are less than defined
3939
// Material Design breakpoints
4040
// @type map
4141
$overlapping-lt: (
42-
sm: 599px,
43-
md: 959px,
44-
lg: 1279px,
45-
xl: 1919px,
42+
lt-sm: 599px,
43+
lt-md: 959px,
44+
lt-lg: 1279px,
45+
lt-xl: 1919px,
4646
) !default;
4747

4848

0 commit comments

Comments
 (0)