gallery/assets/css/parts/_responsive.scss

12 lines
196 B
SCSS
Raw Normal View History

2024-10-24 11:52:54 +02:00
@mixin responsive-min-width($width) {
@media screen and (min-width: $width) {
@content;
}
}
@mixin desktop {
@include responsive-min-width(1024px) {
@content;
}
}