15 lines
185 B
SCSS
15 lines
185 B
SCSS
|
|
@mixin media-large {
|
|
@media screen and (min-width: 700px) {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
@mixin mouse-available {
|
|
@media screen and (pointer: fine) {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
|