Files
pojazdownik/src/styles/_responsive.scss
T

20 lines
371 B
SCSS

$breakpointMd: 960px;
$breakpointSm: 550px;
@mixin smallScreen() {
@media only screen and (max-width: $breakpointSm) {
@content;
}
}
@mixin midScreen() {
@media only screen and (max-width: $breakpointMd) {
@content;
}
}
@mixin midScreenLandscape() {
@media only screen and (orientation: landscape) and (max-width: $breakpointMd) {
@content;
}
}