Skip to content

Instantly share code, notes, and snippets.

@soerson
Created February 22, 2016 14:06
Show Gist options
  • Save soerson/10b4e716a21e5c42bc8a to your computer and use it in GitHub Desktop.
Save soerson/10b4e716a21e5c42bc8a to your computer and use it in GitHub Desktop.
SCSS: pull icons from sprite
.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