Skip to content

Commit

Permalink
Merge pull request #86 from werkbot/hotfix/2.1.13
Browse files Browse the repository at this point in the history
Added line-height to button properties
  • Loading branch information
aletail authored Feb 22, 2024
2 parents a61a1fb + e6db2d6 commit c03c73d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "werkbot-framewerk",
"version": "2.1.12",
"version": "2.1.13",
"description": "A framework of css and javascript that Werkbot uses as a foundation to build our websites.",
"main": "js/form.js",
"directories": {
Expand Down
2 changes: 2 additions & 0 deletions sass/components/button/_button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ $default-component-button-properties:(
textAlign: center,
disabledColor: #dddddd,
disabledTextColor: getThemeProperty(textColorLight),
lineHeight: inherit,
variants: (
white-btn: (
background-color: getThemeProperty(backgroundColorLight),
Expand Down Expand Up @@ -53,6 +54,7 @@ $component-button-properties: $default-component-button-properties !default;
font-weight: getThemeProperty(fontWeight, $component-button-properties);
font-family: getThemeProperty(fontFamily, $component-button-properties);
font-size: getThemeProperty(fontSize, $component-button-properties);
line-height: getThemeProperty(lineHeight, $component-button-properties);
text-align: getThemeProperty(textAlign, $component-button-properties);
-webkit-appearance: none;
-webkit-transition: background-color 0.25s ease-out;
Expand Down

0 comments on commit c03c73d

Please sign in to comment.