Created
July 19, 2016 12:33
-
-
Save kovtunos/8be338dec38c7b52084d6ea141e2bfa8 to your computer and use it in GitHub Desktop.
Iconic font mapping #mixin
This file contains hidden or 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
| // 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