Media query that targets devices that have any pointer available that is fine (eg Mouse), with cover for IE10+ also as it won't be on mobile devices
@mixin mouse-only {
//sass-lint:disable-block no-vendor-prefixes
@media (any-pointer: fine), (-ms-high-contrast: active), (-ms-high-contrast: none) {
@content;
}
}