Created
February 22, 2016 14:06
-
-
Save soerson/10b4e716a21e5c42bc8a to your computer and use it in GitHub Desktop.
SCSS: pull icons from sprite
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
| .icon { | |
| @each $sprite in $spritesheet-sprites { | |
| $spritename: nth($sprite, 10); | |
| &__#{$spritename} { | |
| @include sprite($sprite); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment