select2-foundation icon indicating copy to clipboard operation
select2-foundation copied to clipboard

height for input-group

Open ArtDepartmentMJ opened this issue 8 years ago • 1 comments

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 avatar Mar 22 '17 09:03 ArtDepartmentMJ

@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

zflat avatar Apr 10 '17 20:04 zflat