Merge pull request #1234 from miikkatu/unfix-form-field-input-height

Unset form field input height to make it scale
This commit is contained in:
Sean Yesmunt 2018-04-02 14:56:00 -04:00 committed by GitHub
commit 2fa552a2c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,17 +41,19 @@
.form-field__input {
display: flex;
padding-top: $spacing-vertical / 3;
height: 36px;
input[type='checkbox'],
input[type='checkbox'] {
margin-top: 4px;
}
input[type='radio'] {
margin-top: 5px;
margin-top: 2px;
}
input.paginate-channel {
width: 35px;
}
&.form-field--auto-height {
height: auto;
}