Skip to content

Commit

Permalink
Merge pull request foundation#10600 from marcelox/patch-1
Browse files Browse the repository at this point in the history
Set border-width variable on button-base mixin
  • Loading branch information
ncoden authored Mar 30, 2018
2 parents d0dea0b + b4d9e1a commit 7f2d207
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scss/components/_button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ $button-color-alt: $black !default;
/// @type Number
$button-radius: $global-radius !default;

/// Border for buttons, transparent by default
/// @type List
$button-border: 1px solid transparent !default;

/// Border width for hollow outline buttons
/// @type Number
$button-hollow-border-width: 1px !default;
Expand Down Expand Up @@ -110,7 +114,7 @@ $button-responsive-expanded: false !default;
}

-webkit-appearance: none;
border: 1px solid transparent;
border: $button-border;
border-radius: $button-radius;
transition: $button-transition;
font-size: map-get($button-sizes, default);
Expand Down

0 comments on commit 7f2d207

Please sign in to comment.