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

Commit af15a61

Browse files
vandrieshCaerusKaru
authored andcommitted
fix(core): update layout-bp mixin to use right overlapping maps (#1020)
1 parent 211ff9d commit af15a61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ $overlapping-lt: (
6666
@media (min-width: $min) and (max-width: $max) { @content; }
6767
}
6868
@else if map-has-key($overlapping-gt, $bp) {
69-
$min: map-get($breakpoints, $bp);
69+
$min: map-get($overlapping-gt, $bp);
7070
@media (min-width: $min) { @content; }
7171
}
7272
@else if map-has-key($overlapping-lt, $bp) {
73-
$max: map-get($breakpoints, $bp);
73+
$max: map-get($overlapping-lt, $bp);
7474
@media (max-width: $max) { @content; }
7575
}
7676
}

0 commit comments

Comments
 (0)