Last active
August 29, 2015 14:22
-
-
Save una/e734c600587334be453b to your computer and use it in GitHub Desktop.
Base Buttons
This file contains 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> | |
.btn { | |
@extend $btn--base; | |
&--primary { | |
// style for .btn--primary | |
// these inherit from .btn--primary | |
& [disabled="true"] { | |
// style for disabled | |
} | |
& [type="submit"] { | |
// style for submit | |
} | |
& [type="reset"] { | |
// style for reset | |
} | |
} | |
} | |
</sass> | |
<html> | |
<button class="btn--primary" type="button">Regular</button> | |
<button class="btn--primary" type="button" disabled>Disabled</button> | |
<button class="btn--primary" type="submit">Submit</button> | |
<button class="btn--primary" type="reset">Reset</button> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment