mirror of
https://github.com/safing/web
synced 2025-09-01 10:39:03 +00:00
Hotfix semantic scss
This commit is contained in:
parent
38aa8f072c
commit
efa12859e5
1 changed files with 49 additions and 0 deletions
|
@ -67,3 +67,52 @@
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***/
|
||||||
|
|
||||||
|
/* Mobile */
|
||||||
|
@media only screen and (max-width: 767px) {
|
||||||
|
.hidden-on-mobile {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Tablet / iPad Portrait */
|
||||||
|
@media only screen and (min-width: 768px) and (max-width: 991px) {
|
||||||
|
.hidden-on-tablet {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* Tablet and lower*/
|
||||||
|
@media only screen and (max-width: 991px) {
|
||||||
|
.hidden-on-tablet-and-lower {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Computer / Desktop / iPad Landscape */
|
||||||
|
@media only screen and (min-width: 992px) and (max-width: 1199px) {
|
||||||
|
.hidden-on-computer {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* Computer and wider */
|
||||||
|
@media only screen and (min-width: 992px) {
|
||||||
|
.hidden-on-computer-and-wider {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Large Monitor */
|
||||||
|
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
|
||||||
|
.hidden-on-large-screen {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Widescreen Monitor */
|
||||||
|
@media only screen and (min-width: 1920px) {
|
||||||
|
.hidden-on-widescreen {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue