Skip to content

Instantly share code, notes, and snippets.

@kulerbox
Last active August 29, 2015 14:21
Show Gist options
  • Save kulerbox/d202cf8fd955dbd33290 to your computer and use it in GitHub Desktop.
Save kulerbox/d202cf8fd955dbd33290 to your computer and use it in GitHub Desktop.
Sass @each with multiple variables
$zoo: ("puma": black, "sea-slug": green, "egret": brown, "salamander": red);
@each $animal, $color in $zoo {
.#{$animal}-icon {
background-color: $color;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment