Skip to content

Instantly share code, notes, and snippets.

@leekiernan
Last active December 16, 2015 02:59
Show Gist options
  • Save leekiernan/5366385 to your computer and use it in GitHub Desktop.
Save leekiernan/5366385 to your computer and use it in GitHub Desktop.
@mixin background-image-or-2x($image) {
@media (-webkit-min-device-pixel-ratio: 2), (min-device-width: 1800px)
{
background-image: url("#{ $image + "[email protected]" }");
}
background-image: url("#{ $image + ".png" }");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment