Skip to content

Instantly share code, notes, and snippets.

@jacobarriola
Created August 31, 2015 23:46
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 jacobarriola/f58c325105ebde2230b8 to your computer and use it in GitHub Desktop.
Save jacobarriola/f58c325105ebde2230b8 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
@mixin bgimage($name,$ext:png) {
$url:"../../images/#{$name}.#{$ext}";
background: url($url);
}
.sample {
@include bgimage(small/logo);
}
.sample {
background: url("../../images/small/logo.png");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment