Skip to content

Instantly share code, notes, and snippets.

@robcolburn
Created December 24, 2014 19:33
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 robcolburn/0e6e71461540f3079480 to your computer and use it in GitHub Desktop.
Save robcolburn/0e6e71461540f3079480 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.9)
// Compass (v1.0.1)
// ----
$icons: (
action-left: "A",
action-right: "B"
);
.cat {
$content: '';
@each $name, $code in $icons {
$content: $content + if($content == '','', ',') + $code;
}
content: $content;
}
.cat {
content: "A,B";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment