Skip to content

Instantly share code, notes, and snippets.

@fchristant
Created June 5, 2017 11:36
Show Gist options
  • Save fchristant/86bdb214cc5593ea9ef1aa08273d832f to your computer and use it in GitHub Desktop.
Save fchristant/86bdb214cc5593ea9ef1aa08273d832f to your computer and use it in GitHub Desktop.
Detect a device that is not handheld
@mixin NotHandHeld() {
@media (any-pointer:fine) and #{map-deep-get($site_breakpoints, "m", "mq")},
#{map-deep-get($site_breakpoints, "m", "mq")} and (-moz-touch-enabled: 0), #{map-deep-get($site_breakpoints, "m", "mq")} and (-moz-touch-enabled: 1),
#{map-deep-get($site_breakpoints, "m", "mq")} and (-ms-high-contrast: none), #{map-deep-get($site_breakpoints, "m", "mq")} and (-ms-high-contrast: active)
{
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment