Skip to content

Instantly share code, notes, and snippets.

@kovtunos
Created July 19, 2016 12:33
Show Gist options
  • Select an option

  • Save kovtunos/8be338dec38c7b52084d6ea141e2bfa8 to your computer and use it in GitHub Desktop.

Select an option

Save kovtunos/8be338dec38c7b52084d6ea141e2bfa8 to your computer and use it in GitHub Desktop.
Iconic font mapping #mixin
// Iconic font mapping.
//
// Usage:
// @include icon(a);
// @include icon(b);
@mixin icon($letter) {
.icon {
&.icon-#{$letter}::before {
content: '#{$letter}';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment