7 lines
106 B
SCSS
7 lines
106 B
SCSS
|
|
// max-screen
|
|
@mixin max-screen($max) {
|
|
@media only screen and (max-width: $max) {
|
|
@content;
|
|
}
|
|
}
|