diff --git a/package.json b/package.json index 29c22a5..fe4d4f6 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/sass/components/button/_button.scss b/sass/components/button/_button.scss index 398a9a9..fc01a81 100644 --- a/sass/components/button/_button.scss +++ b/sass/components/button/_button.scss @@ -20,6 +20,7 @@ $default-component-button-properties:( textAlign: center, disabledColor: #dddddd, disabledTextColor: getThemeProperty(textColorLight), + lineHeight: inherit, variants: ( white-btn: ( background-color: getThemeProperty(backgroundColorLight), @@ -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;