Skip to content

Commit 546149f

Browse files
committed
Fixes #19771: Enable .form-control-sm/lg on select.form-control
1 parent d8c898b commit 546149f

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

scss/_forms.scss

+12
Original file line numberDiff line numberDiff line change
@@ -153,12 +153,24 @@ select.form-control {
153153
@include border-radius($input-border-radius-sm);
154154
}
155155

156+
select.form-control-sm {
157+
&:not([size]):not([multiple]) {
158+
height: $input-height-sm;
159+
}
160+
}
161+
156162
.form-control-lg {
157163
padding: $input-padding-y-lg $input-padding-x-lg;
158164
font-size: $font-size-lg;
159165
@include border-radius($input-border-radius-lg);
160166
}
161167

168+
select.form-control-lg {
169+
&:not([size]):not([multiple]) {
170+
height: $input-height-lg;
171+
}
172+
}
173+
162174

163175
// Form groups
164176
//

0 commit comments

Comments
 (0)