Skip to content

Commit

Permalink
Fixed media query syntax issues
Browse files Browse the repository at this point in the history
  • Loading branch information
amir2mi committed Oct 21, 2022
1 parent ddd72c8 commit 351fb7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scss/helpers/_responsive.scss
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,14 @@

@mixin break-xxl() {
$xxl-bp: map-get($RESPONSIVE_BREAKPOINTS, "xxl");
@media screen and(min-width: $xxl-bp) {
@media screen and (min-width: $xxl-bp) {
@content;
}
}

@mixin break-xxl-max() {
$xxl-bp: map-get($RESPONSIVE_BREAKPOINTS, "xxl");
@media screen and(max-width: ($xxl-bp - 0.02px)) {
@media screen and (max-width: ($xxl-bp - 0.02px)) {
@content;
}
}

0 comments on commit 351fb7a

Please sign in to comment.