Include a mobile detection mixin in reset

This commit is contained in:
Emilia Allison 2022-09-29 23:38:30 -04:00
parent 85c2aadc39
commit f64d1d557d
Signed by: emilia
GPG Key ID: 7A3F8997BFE894E0
1 changed files with 6 additions and 0 deletions

View File

@ -51,3 +51,9 @@ input, button, textarea, select {
scroll-behaviour: auto !important;
}
}
@mixin mobile() {
@media (pointer: coarse) {
@content;
}
}