2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-17 19:21:23 +03:00

Fix incorrect select height calculation (#21171)

This commit is contained in:
Florian Schlittenbauer
2016-11-28 22:33:11 +01:00
committed by Mark Otto
parent bccbc4f0c3
commit 959c4e527c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -67,7 +67,7 @@
select.form-control {
&:not([size]):not([multiple]) {
$select-border-width: ($border-width * 2);
height: calc(#{$input-height} - #{$select-border-width});
height: calc(#{$input-height} + #{$select-border-width});
}
&:focus::-ms-value {