Skip to content

Instantly share code, notes, and snippets.

@dinocarl
Created September 30, 2014 04:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dinocarl/04f5be11c5a6b26b8ff9 to your computer and use it in GitHub Desktop.
Save dinocarl/04f5be11c5a6b26b8ff9 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.4)
// Compass (v1.0.1)
// ----
@mixin icon ($name, $code) {
$withslash: "\"\\#{$code}\"";
.#{$name}:before {
content: unquote($withslash);
}
}
@include icon('test', '4556');
.test:before {
content: "\4556";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment