Last active
October 1, 2015 14:46
-
-
Save jonathanpath/ced9bbe66878ea011e42 to your computer and use it in GitHub Desktop.
Retina Sass mixin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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