Created
September 30, 2014 04:14
-
-
Save dinocarl/04f5be11c5a6b26b8ff9 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
// ---- | |
// Sass (v3.4.4) | |
// Compass (v1.0.1) | |
// ---- | |
@mixin icon ($name, $code) { | |
$withslash: "\"\\#{$code}\""; | |
.#{$name}:before { | |
content: unquote($withslash); | |
} | |
} | |
@include icon('test', '4556'); |
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
.test:before { | |
content: "\4556"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment