Skip to content

Instantly share code, notes, and snippets.

@alienresident
Created February 27, 2014 19:56
Show Gist options
  • Save alienresident/9258174 to your computer and use it in GitHub Desktop.
Save alienresident/9258174 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.2.14)
// Compass (v0.12.2)
// ----
$icon: (help '\e003');
@mixin generate-icon($icon, $pseudo: before, $prefix: '') {
#{$prefix}#{nth($icon, 1)}:#{$pseudo} {
content: nth($icon, 2);
}
}
@include generate-icon($icon, after, '.icon-');
.icon-help:after {
content: "\e003";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment