Skip to content

Instantly share code, notes, and snippets.

@krambuhl
Created November 9, 2015 01:59
Show Gist options
  • Save krambuhl/b7ab9ecb9d4d5b3bd003 to your computer and use it in GitHub Desktop.
Save krambuhl/b7ab9ecb9d4d5b3bd003 to your computer and use it in GitHub Desktop.
sass mixin for hidpi responsive behavior
@mixin hidpi {
@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and ( min--moz-device-pixel-ratio: 2),
only screen and ( -o-min-device-pixel-ratio: 2/1),
only screen and ( min-device-pixel-ratio: 2),
only screen and ( min-resolution: 192dpi),
only screen and ( min-resolution: 2dppx) { @content; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment