mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
28 lines
400 B
SCSS
28 lines
400 B
SCSS
|
// 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;
|
||
|
}
|
||
|
}
|