Skip to content

Instantly share code, notes, and snippets.

@shkm
Last active December 26, 2015 03:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shkm/7085706 to your computer and use it in GitHub Desktop.
Save shkm/7085706 to your computer and use it in GitHub Desktop.
Retina mixin
@mixin retina {
@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dppx) {
@content;
}
}
@shkm
Copy link
Author

shkm commented Oct 21, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment