Newer
Older
@mixin button($text-color, $border-color: transparent, $background-gradient) {
border: 1px solid;
border-color: $border-color;
span:first-child {
color: $text-color;
}
&:hover,
&:focus,
&.active,
&:disabled {
@content;
}
&:disabled {
transition: all 150ms ease-in-out;