Skip to content

Instantly share code, notes, and snippets.

@MichaelArestad
Created September 16, 2014 22:27
Show Gist options
  • Save MichaelArestad/6df49ecf56aec0504065 to your computer and use it in GitHub Desktop.
Save MichaelArestad/6df49ecf56aec0504065 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// ----
$mappy-map: (
key: value,
another-key: another-value
);
.demo {
@each $key, $value in $mappy-map {
#{$key}: $value;
}
}
.demo {
key: value;
another-key: another-value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment