Skip to content

Commit

Permalink
feat: New utility classes for responsive elements
Browse files Browse the repository at this point in the history
  • Loading branch information
mateoroldos committed Dec 8, 2022
1 parent 5cb7507 commit 08d6533
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions styles/utils/_utility-classes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,22 @@
}
}

.hide-on-mobile-flex {
display: none;

@include mxn.mq(medium) {
display: flex;
}
}

.hide-on-desktop-flex {
display: flex;

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

.center {
display: flex;
align-items: center;
Expand Down

0 comments on commit 08d6533

Please sign in to comment.