Files
stacjownik/src/styles/responsive.scss
T
2021-06-29 13:13:42 +02:00

18 lines
307 B
SCSS

@mixin smallScreen() {
@media only screen and (max-width: 700px) {
@content;
}
}
@mixin midScreen() {
@media only screen and (max-width: 950px) {
@content;
}
}
@mixin bigScreen() {
@media only screen and (min-width: 2000px) {
@content;
}
}