diff --git a/scss/_buttons.scss b/scss/_buttons.scss index 8ce527a00c..e743fab121 100644 --- a/scss/_buttons.scss +++ b/scss/_buttons.scss @@ -17,7 +17,7 @@ cursor: pointer; user-select: none; border: $border-width solid transparent; - @include button-size($padding-base-y, $padding-base-x, $font-size-base, $line-height-base, $btn-border-radius); + @include button-size($padding-y, $padding-x, $font-size-base, $line-height-base, $btn-border-radius); transition: all .2s ease-in-out; &, diff --git a/scss/_forms.scss b/scss/_forms.scss index 6f7d7f962c..1632c38987 100644 --- a/scss/_forms.scss +++ b/scss/_forms.scss @@ -12,7 +12,7 @@ width: 100%; // // Make inputs at least the height of their button counterpart (base line-height + padding + border) // height: $input-height; - padding: $padding-base-y $padding-base-x; + padding: $padding-y $padding-x; font-size: $font-size-base; line-height: $line-height-base; color: $input-color; @@ -83,7 +83,7 @@ // For use with horizontal and inline forms, when you need the label text to // align with the form controls. .form-control-label { - padding: ($padding-base-y + $border-width) $padding-base-x; + padding: ($padding-y + $border-width) $padding-x; margin-bottom: 0; // Override the `