Skip to content

Instantly share code, notes, and snippets.

@veirus
Last active December 16, 2016 10:11
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 veirus/0aa196277b36853492a3084ef6da22e4 to your computer and use it in GitHub Desktop.
Save veirus/0aa196277b36853492a3084ef6da22e4 to your computer and use it in GitHub Desktop.
$image-path: '../img' !default
=bgi($name, $ext:'png', $repeat:false, $size:false)
@if($ext == svg)
background-image: url(#{$image-path}/#{$name}.png)
background-image: url(#{$image-path}/#{$name}.#{$ext})
@if not($repeat)
background-repeat: no-repeat
@if($size)
background-size: $size;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment