We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d0dea0b + b4d9e1a commit 7f2d207Copy full SHA for 7f2d207
scss/components/_button.scss
@@ -47,6 +47,10 @@ $button-color-alt: $black !default;
47
/// @type Number
48
$button-radius: $global-radius !default;
49
50
+/// Border for buttons, transparent by default
51
+/// @type List
52
+$button-border: 1px solid transparent !default;
53
+
54
/// Border width for hollow outline buttons
55
56
$button-hollow-border-width: 1px !default;
@@ -110,7 +114,7 @@ $button-responsive-expanded: false !default;
110
114
}
111
115
112
116
-webkit-appearance: none;
113
- border: 1px solid transparent;
117
+ border: $button-border;
118
border-radius: $button-radius;
119
transition: $button-transition;
120
font-size: map-get($button-sizes, default);
0 commit comments