Unset form field input height to make it scale

This commit is contained in:
miikkatu 2018-04-01 13:46:38 +03:00
parent 252d684106
commit b473f55aba

View file

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