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