diff options
| author | Rutger Laurman <[email protected]> | 2017-03-03 20:19:02 +0100 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-03-03 11:19:02 -0800 |
| commit | 0a997795b4ac305da9e20dfb9e85d4f13b541f10 (patch) | |
| tree | bfd2e0ca41166107eb9a50e16a98b29bcd3e371f | |
| parent | e02597519aaad4643c87a3b9a77a2d0ff10b27ab (diff) | |
| download | bootstrap-0a997795b4ac305da9e20dfb9e85d4f13b541f10.tar.xz bootstrap-0a997795b4ac305da9e20dfb9e85d4f13b541f10.zip | |
Fix border width calculation for custom-select (#22068)
In addition to #22011 and #21994
| -rw-r--r-- | scss/_custom-forms.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_custom-forms.scss b/scss/_custom-forms.scss index a73359c86..39f164822 100644 --- a/scss/_custom-forms.scss +++ b/scss/_custom-forms.scss @@ -135,7 +135,7 @@ .custom-select { display: inline-block; max-width: 100%; - $select-border-width: ($border-width * 2); + $select-border-width: ($custom-select-border-width * 2); height: calc(#{$input-height} + #{$select-border-width}); padding: $custom-select-padding-y ($custom-select-padding-x + $custom-select-indicator-padding) $custom-select-padding-y $custom-select-padding-x; line-height: $custom-select-line-height; |
