12 lines
128 B
SCSS
12 lines
128 B
SCSS
|
//
|
||
|
// Mixins: Touch Support
|
||
|
//
|
||
|
|
||
|
@mixin on-touch-device {
|
||
|
@media (hover: none) and (pointer: coarse) {
|
||
|
@content;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//
|