-
-
Save gavinblair/22e4fa6619506fb50d50 to your computer and use it in GitHub Desktop.
This file contains 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
div { | |
@include image-2x("logo.png", "logo2x.png"); | |
} | |
@mixin image-2x($image1, $image2) { | |
background-image: url($image); | |
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { | |
background-image: url($image2); | |
background-size: image-width($image1) image-height($image1); | |
} | |
} |
SeanJA
commented
Jul 30, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment