Skip to content

Instantly share code, notes, and snippets.

@frontendbeast
Last active August 29, 2015 14:14
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 frontendbeast/95efbc78efb83c51551c to your computer and use it in GitHub Desktop.
Save frontendbeast/95efbc78efb83c51551c to your computer and use it in GitHub Desktop.
@mixin svg-content() {
background: url('something.svg');
}
@mixin svg($name, $position: false) {
@if ($position!=false) {
&:#{$position} {
@include svg-content;
}
} @else {
@include svg-content;
}
}
.example {
@include svg('hello', before);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment