1
0
forked from tsc-vfl/hugo-page

15 lines
185 B
SCSS

@mixin media-large {
@media screen and (min-width: 700px) {
@content;
}
}
@mixin mouse-available {
@media screen and (pointer: fine) {
@content;
}
}