mirror of
https://github.com/dyzulk/raisen-app.git
synced 2026-01-26 13:22:00 +07:00
12 lines
128 B
SCSS
12 lines
128 B
SCSS
//
|
|
// Mixins: Touch Support
|
|
//
|
|
|
|
@mixin on-touch-device {
|
|
@media (hover: none) and (pointer: coarse) {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
//
|