Skip to content

Commit

Permalink
fix(buttons): typo in button variant mixin
Browse files Browse the repository at this point in the history
  • Loading branch information
ffoodd committed Sep 16, 2019
1 parent 4febaa6 commit 5926d9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scss/mixins/_buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Easily pump out default styles, as well as :hover, :focus, :active,
// and disabled options for all buttons
// boosted mod add default color, disable-background and disabled-border and disabled-color option
@mixin button-varianoint sut($background, $border, $hover-background: darken($background, 7.5%), $hover-border: darken($border, 10%), $active-background: darken($background, 10%), $active-border: darken($border, 12.5%), $disabled-background: $background, $disabled-border: border, $disabled-color: color-yiq($background), $color: color-yiq($background)) {
@mixin button-variant($background, $border, $hover-background: darken($background, 7.5%), $hover-border: darken($border, 10%), $active-background: darken($background, 10%), $active-border: darken($border, 12.5%), $disabled-background: $background, $disabled-border: border, $disabled-color: color-yiq($background), $color: color-yiq($background)) {
color: $color;
@include gradient-bg($background);
border-color: $border;
Expand Down

0 comments on commit 5926d9e

Please sign in to comment.