philomena/assets/css/elements/_mobile.scss

28 lines
400 B
SCSS
Raw Normal View History

2023-11-23 17:07:49 +01:00
// Phones.
@include if-phone {
.hidden--phone {
display: none !important;
}
}
// Tablets.
@include if-tablet {
.hidden--tablet {
display: none !important;
}
}
// Phones and tablets.
@include if-mobile {
.hidden--mobile {
display: none !important;
}
}
// Anything larger than 1280px (Desktops).
@include if-desktop {
.hidden--desktop {
display: none !important;
}
}