Skip to content

Instantly share code, notes, and snippets.

@ralexandr
Created October 19, 2016 09:14
Show Gist options
  • Save ralexandr/a61a5fd8da9932f5e9d3535c15ce262c to your computer and use it in GitHub Desktop.
Save ralexandr/a61a5fd8da9932f5e9d3535c15ce262c to your computer and use it in GitHub Desktop.
SASS: Retina images
/*--------------------------------
Retina images
example:
.element {
@include retina {
background-image: url(../img/background@2x.png);
}
}
*/
@mixin retina {
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3 / 2),
only screen and (min-device-pixel-ratio: 1.5),
only screen and (min-resolution: 1.5dppx) {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment