Skip to content

Commit

Permalink
fix: Fix responsive utility classes
Browse files Browse the repository at this point in the history
  • Loading branch information
mateoroldos committed Dec 8, 2022
1 parent f57c06a commit cee39f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions styles/utils/_utility-classes.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@use './mixins' as mxn;

.hide-on-mobile {
display: none !important;
display: none;

@include mxn.mq(medium) {
display: block;
Expand All @@ -12,7 +12,7 @@
display: block;

@include mxn.mq(medium) {
display: none !important;
display: none;
}
}

Expand Down

0 comments on commit cee39f7

Please sign in to comment.