Skip to content

Instantly share code, notes, and snippets.

@jellyninjadev
Created July 12, 2013 16:50
Show Gist options
  • Save jellyninjadev/5985934 to your computer and use it in GitHub Desktop.
Save jellyninjadev/5985934 to your computer and use it in GitHub Desktop.
@mixin mq($keyword) {
/* … */
@if $keyword == retina {
@media
only screen and (-webkit-min-device-pixel-ratio: 1.3)
only screen and (min-resolution: 124.8dpi)
only screen and (min-resolution: 1.3dppx) {
@content;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment