Created
July 15, 2014 02:28
-
-
Save shayhowe/4cf794581e721ffd2e32 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.4.0.rc.1) | |
// Compass (v1.0.0.alpha.20) | |
// ---- | |
$border-radius-base: 6px; | |
$border-radius-mini: 4px; | |
$radii: ( | |
base: $border-radius-base, | |
mini: $border-radius-mini | |
); | |
@each $radius, $i in $radii { | |
%border-radius-#{$radius} { | |
border-radius: $i; | |
} | |
} | |
// This would normally be a silent class using % | |
.btn { | |
@extend %border-radius-base; | |
} | |
// This would normally be a silent class using % | |
.btn-mini { | |
@extend %border-radius-mini; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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