diff options
| author | Patrick Yeo <[email protected]> | 2017-08-10 22:58:40 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-08-10 22:58:40 -0700 |
| commit | c5903ddfd65fe507b416f0cb9ddc9d181614e724 (patch) | |
| tree | 57e020ab16cc9230c939ae89c7bdb631d2c6d4ea | |
| parent | b76357d57d472542b391d099629221f05e5a298f (diff) | |
| download | bootstrap-c5903ddfd65fe507b416f0cb9ddc9d181614e724.tar.xz bootstrap-c5903ddfd65fe507b416f0cb9ddc9d181614e724.zip | |
`$input-height-inner-lg` should use `$font-size-lg` instead of `$font-size-sm` (#23150)
| -rw-r--r-- | scss/_variables.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_variables.scss b/scss/_variables.scss index e75e44e6a..dc8eaf198 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -383,7 +383,7 @@ $input-height: calc(#{$input-height-inner} + #{$input-height-bo $input-height-inner-sm: ($font-size-sm * $input-btn-line-height-sm) + ($input-btn-padding-y-sm * 2) !default; $input-height-sm: calc(#{$input-height-inner-sm} + #{$input-height-border}) !default; -$input-height-inner-lg: ($font-size-sm * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2) !default; +$input-height-inner-lg: ($font-size-lg * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2) !default; $input-height-lg: calc(#{$input-height-inner-lg} + #{$input-height-border}) !default; $input-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s !default; |
