Никита Круглицкий 1e70e7c45e update
2025-06-22 23:07:17 +06:00

12 lines
134 B
SCSS

@mixin mobile {
@media (max-width: 480px) {
@content;
}
}
@mixin desktop {
@media (min-width: 481px) {
@content;
}
}