5 lines
91 B
SCSS
5 lines
91 B
SCSS
@mixin respond-to($breakpoint) {
|
|
@media (max-width: $width) {
|
|
@content;
|
|
}
|
|
} |