Created
January 28, 2015 02:59
-
-
Save rcaracaus/82b1a2ffeff88422177b 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.9) | |
// Compass (v1.0.1) | |
// ---- | |
.button, | |
%button { | |
border-radius: 5px; | |
a { | |
text-decoration: none; | |
} | |
&--red { | |
@extend %button; | |
background: red; | |
} | |
} | |
.my-red-button { | |
@extend %button--red; | |
} |
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
.button, | |
.button--red, | |
.my-red-button { | |
border-radius: 5px; | |
} | |
.button a, | |
.button--red a, | |
.my-red-button a { | |
text-decoration: none; | |
} | |
.button--red, | |
.my-red-button { | |
background: red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment