Skip to content

Instantly share code, notes, and snippets.

@seanwalsh
Created September 15, 2017 14:44
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 seanwalsh/f3db03cb1e3bd4cfce7e0b7bb220a09b to your computer and use it in GitHub Desktop.
Save seanwalsh/f3db03cb1e3bd4cfce7e0b7bb220a09b to your computer and use it in GitHub Desktop.
loop through sass map
@each $item in $map {
$key: nth($item, 1);
$value: nth($item, 2);
@if $value != FALSE {
#{$key}: $value; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment