mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 20:37:59 +01:00
27 lines
404 B
CSS
27 lines
404 B
CSS
/* Phones. */
|
|
@mixin if-phone {
|
|
.hidden--phone {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
/* Tablets. */
|
|
@mixin if-tablet {
|
|
.hidden--tablet {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
/* Phones and tablets. */
|
|
@mixin if-mobile {
|
|
.hidden--mobile {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
/* Anything larger than 1280px (Desktops). */
|
|
@mixin if-desktop {
|
|
.hidden--desktop {
|
|
display: none !important;
|
|
}
|
|
}
|