public-health-ch/publichealth/static/css/modules/_mixins.scss

8 lines
106 B
SCSS
Raw Normal View History

2017-02-06 13:35:58 +00:00
// max-screen
@mixin max-screen($max) {
@media only screen and (max-width: $max) {
@content;
}
}