Skip to content

Commit

Permalink
$input-height-inner-lg should use $font-size-lg instead of `$font…
Browse files Browse the repository at this point in the history
…-size-sm` (#23150)
  • Loading branch information
pat270 authored and mdo committed Aug 11, 2017
1 parent b76357d commit c5903dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit c5903dd

Please sign in to comment.