public-health-ch/publichealth/static/css/modules/_mixins.scss
2017-05-05 16:57:28 +02:00

14 lines
240 B
SCSS

// max-screen
@mixin max-screen($max) {
@media only screen and (max-width: $max) {
@content;
}
}
// mid-screen
@mixin mid-screen($min, $max) {
@media only screen and (min-width: $min) and (max-width: $max) {
@content;
}
}