Skip to content

Commit

Permalink
ci: Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot committed Dec 5, 2023
1 parent 9930608 commit e1b1d64
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/styles/_visibility.scss
Original file line number Diff line number Diff line change
@@ -1,28 +1,25 @@
@use './colors';

@mixin all {


.seam-invisible {
display: none!important;
display: none !important;
}

.seam-md-flex {
@media only screen and (width >= 768px) {
display: flex!important;
display: flex !important;
}
}

.seam-md-block {
@media only screen and (width >= 768px) {
display: block!important;
display: block !important;
}
}

.seam-md-invisible {
@media only screen and (width >= 768px) {
display: none!important;
display: none !important;
}
}

}

0 comments on commit e1b1d64

Please sign in to comment.