mirror of
https://github.com/Spythere/pojazdownik.git
synced 2026-05-03 11:45:34 +00:00
20 lines
371 B
SCSS
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;
|
|
}
|
|
} |