From b473f55aba2267020a59527655998945243db2a7 Mon Sep 17 00:00:00 2001 From: miikkatu Date: Sun, 1 Apr 2018 13:46:38 +0300 Subject: [PATCH] Unset form field input height to make it scale --- src/renderer/scss/component/_form-field.scss | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/renderer/scss/component/_form-field.scss b/src/renderer/scss/component/_form-field.scss index f05b802df..efeec9d59 100644 --- a/src/renderer/scss/component/_form-field.scss +++ b/src/renderer/scss/component/_form-field.scss @@ -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; }