Skip to content

Instantly share code, notes, and snippets.

@eoneill
Created November 21, 2013 19:01
Show Gist options
  • Save eoneill/7587547 to your computer and use it in GitHub Desktop.
Save eoneill/7587547 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
.example {
$button-sizes: (
(small 16px),
(large 22px)
);
@each $size in $button-sizes {
/* ----- */
name: nth($size, 1);
size: nth($size, 2);
}
}
.example {
/* ----- */
name: small;
size: 16px;
/* ----- */
name: large;
size: 22px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment