Skip to content

Commit

Permalink
Merge branch 'master' of github.com:carbon-design-system/carbon into …
Browse files Browse the repository at this point in the history
…release/v10.16.0-rc.1
  • Loading branch information
dakahn committed Jul 15, 2020
2 parents 0232dc3 + d734a44 commit 4c30648
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/components/docs/sass.md
Original file line number Diff line number Diff line change
Expand Up @@ -14056,7 +14056,7 @@ Button base styles
justify-content: space-between;
vertical-align: top;
flex-shrink: 0;
min-height: rem($button-height);
min-height: $button-height;
padding: $button-padding;
border-radius: $button-border-radius;
text-align: left;
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/components/button/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
justify-content: space-between;
vertical-align: top;
flex-shrink: 0;
min-height: rem($button-height);
min-height: $button-height;
padding: $button-padding;
border-radius: $button-border-radius;
text-align: left;
Expand Down
2 changes: 1 addition & 1 deletion packages/components/src/globals/scss/_theme-tokens.scss
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ $button-border-radius: 0 !default;
/// @type Number
/// @access public
/// @group button
$button-height: 48px !default;
$button-height: 3rem !default;

/// @type Value
/// @access public
Expand Down

0 comments on commit 4c30648

Please sign in to comment.