Skip to content

Instantly share code, notes, and snippets.

@shayhowe
Created July 15, 2014 02:09
Show Gist options
  • Save shayhowe/8e07289b0435b7f0eef2 to your computer and use it in GitHub Desktop.
Save shayhowe/8e07289b0435b7f0eef2 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.10)
// Compass (v1.0.0.alpha.20)
// ----
$radii: (
base: 6px,
mini: 4px
);
@each $radius, $value in $radii {
%border-radius-#{$radius} {
border-radius: $value;
}
}
.btn {
@extend %border-radius-base;
}
.btn-mini {
@extend %border-radius-mini;
}
.btn {
border-radius: 6px;
}
.btn-mini {
border-radius: 4px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment