Skip to content

Instantly share code, notes, and snippets.

@Yohn
Forked from Snugug/SassMeister-input.scss
Created August 27, 2022 06:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Yohn/62ce1ef1275f182786c85ff56094120b to your computer and use it in GitHub Desktop.
Save Yohn/62ce1ef1275f182786c85ff56094120b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.7)
// ----
$zoo: ("puma": black, "sea-slug": green, "egret": brown, "salamander": red);
@each $animal, $color in $zoo {
.#{$animal}-icon {
background-color: $color;
}
}
.puma-icon {
background-color: black;
}
.sea-slug-icon {
background-color: green;
}
.egret-icon {
background-color: brown;
}
.salamander-icon {
background-color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment