5 lines
65 B
SCSS
5 lines
65 B
SCSS
@mixin mobile {
|
|
@media (max-width: 768px) {
|
|
@content;
|
|
}
|
|
} |