$button-font-family: inherit !default;
/// Font weight for button elements.
+/// Ignored if null (default)
/// @type Font-Weight
-$button-font-weight: inherit !default;
+$button-font-weight: null !default;
/// Padding inside buttons.
/// @type List
vertical-align: middle;
margin: $button-margin;
font-family: $button-font-family;
- @if ($button-font-weight != inherit && $button-font-weight != $global-weight-normal) {
- font-weight: $button-font-weight;
- }
+ font-weight: $button-font-weight;
@if (type-of($button-padding) == 'map') {
@each $size, $padding in $button-padding {