Created
February 23, 2016 08:13
-
-
Save lucalanca/35be1cf3501d36709dde to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
@function imagePath($imageName) { | |
@return 'siroop.ch/#{$imageName}'; | |
} | |
.foo { | |
background-image: url(imagePath('header.png')); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.foo { | |
background-image: url("siroop.ch/header.png"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment