12 lines
128 B
SCSS
Raw Normal View History

2024-07-10 18:28:19 +05:45
//
// Mixins: Touch Support
//
@mixin on-touch-device {
@media (hover: none) and (pointer: coarse) {
@content;
}
}
//