select2-foundation
select2-foundation copied to clipboard
height for input-group
Hi, I noticed the height was slightly off for fields in an input-group, here's my fix for the single only:
.input-group {
$height: ($input-font-size + $form-spacing * 1.5);
.select2-container--foundation {
.select2-selection--single,
.selection .select2-selection--single {
height: $height;
.select2-selection__arrow {
height: $height;
}
}
}
}
@ArtDepartmentMJ Thanks for letting me know. I've confirmed the issue. I'll apply the height similar to how it is done in https://github.com/zurb/foundation-sites/blob/develop/scss/forms/_input-group.scss#L92