Skip to content

Instantly share code, notes, and snippets.

@tcrammond
Created February 1, 2016 08:51
Show Gist options
  • Save tcrammond/3c52defa4576fc3a5855 to your computer and use it in GitHub Desktop.
Save tcrammond/3c52defa4576fc3a5855 to your computer and use it in GitHub Desktop.
Scss image-url function
// libsass removed the image-url function as of 3.x
// This is a basic replacement I have used.
$assets-folder: some/path;
@function image-url ($url) {
@return url($assets-folder + '/' + unquote($url));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment