Fix border width calculation for custom-select (#22068)

In addition to #22011 and #21994
This commit is contained in:
Rutger Laurman 2017-03-03 20:19:02 +01:00 committed by Mark Otto
parent e02597519a
commit 0a997795b4

View File

@ -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;