12 lines
196 B
SCSS
12 lines
196 B
SCSS
@mixin responsive-min-width($width) {
|
|
@media screen and (min-width: $width) {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
@mixin desktop {
|
|
@include responsive-min-width(1024px) {
|
|
@content;
|
|
}
|
|
}
|