Skip to content

Instantly share code, notes, and snippets.

@una
Last active August 29, 2015 14:22
Show Gist options
  • Save una/e734c600587334be453b to your computer and use it in GitHub Desktop.
Save una/e734c600587334be453b to your computer and use it in GitHub Desktop.
Base Buttons
<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