stevemcilwaine
1/24/2020 - 2:43 PM

Media query for mouse-controlled devices only

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;
  }
}