Skip to content

Instantly share code, notes, and snippets.

@jonathanpath
Last active October 1, 2015 14:46
Show Gist options
  • Save jonathanpath/ced9bbe66878ea011e42 to your computer and use it in GitHub Desktop.
Save jonathanpath/ced9bbe66878ea011e42 to your computer and use it in GitHub Desktop.
Retina Sass mixin
// Need autoprefixer to generate browser prefix needed
@mixin retina {
@media
(min-device-pixel-ratio: 2),
(min-resolution: 192dpi),
(min-resolution: 2dppx) {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment