2024-04-30 12:16:09 +02:00
|
|
|
/* Phones. */
|
|
|
|
@mixin if-phone {
|
2023-11-23 17:07:49 +01:00
|
|
|
.hidden--phone {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-30 12:16:09 +02:00
|
|
|
/* Tablets. */
|
|
|
|
@mixin if-tablet {
|
2023-11-23 17:07:49 +01:00
|
|
|
.hidden--tablet {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-30 12:16:09 +02:00
|
|
|
/* Phones and tablets. */
|
|
|
|
@mixin if-mobile {
|
2023-11-23 17:07:49 +01:00
|
|
|
.hidden--mobile {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-30 12:16:09 +02:00
|
|
|
/* Anything larger than 1280px (Desktops). */
|
|
|
|
@mixin if-desktop {
|
2023-11-23 17:07:49 +01:00
|
|
|
.hidden--desktop {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
}
|