1
0
Fork 0
moritzruth.de/assets/css/_responsive.scss
2019-03-30 14:56:05 +01:00

14 lines
269 B
SCSS

$desktop-min-breakpoint: 640px;
$mobile-max-breakpoint: $desktop-min-breakpoint - 1px;
@mixin mobile {
@media only screen and (max-width: $mobile-max-breakpoint) {
@content
}
}
@mixin desktop {
@media only screen and (min-width: 640px) {
@content
}
}