Include a mobile detection mixin in reset
This commit is contained in:
parent
85c2aadc39
commit
f64d1d557d
|
@ -51,3 +51,9 @@ input, button, textarea, select {
|
||||||
scroll-behaviour: auto !important;
|
scroll-behaviour: auto !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@mixin mobile() {
|
||||||
|
@media (pointer: coarse) {
|
||||||
|
@content;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue