AMPERION_Webpage/themes/airspace-hugo/assets/scss/_media-query.scss

27 lines
361 B
SCSS
Raw Permalink Normal View History

2025-06-07 23:02:15 +02:00
/*=== MEDIA QUERY ===*/
@mixin mobile-xs {
@media(max-width: 400px) {
@content;
}
}
@mixin mobile {
@media(max-width: 480px) {
@content;
}
}
@mixin tablet {
@media(max-width: 768px) {
@content;
}
}
@mixin desktop {
@media(max-width: 992px) {
@content;
}
}
@mixin large-desktop {
@media(max-width: 1200px) {
@content;
}
}