From 7143e7a84323d0f714f9af76e20b034bcc0930e1 Mon Sep 17 00:00:00 2001 From: Alice Gaudon Date: Sun, 30 Aug 2020 21:02:57 +0200 Subject: [PATCH] Add textarea styling --- assets/sass/layout.scss | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/assets/sass/layout.scss b/assets/sass/layout.scss index a11e09a..c228448 100644 --- a/assets/sass/layout.scss +++ b/assets/sass/layout.scss @@ -378,7 +378,7 @@ form { } } - input, select, .input-group { + input, select, textarea, .input-group { border: 0; color: $defaultTextColor; background: lighten($panelBackground, 4%); @@ -393,7 +393,7 @@ form { } } - input, select, .form-display { + input, select, textarea, .form-display { display: block; padding: 32px 8px 8px 8px; width: 100%; @@ -424,6 +424,11 @@ form { } } + textarea { + resize: vertical; + min-height: 100px; + } + input[type=color] { height: calc(32px + 8px + 32px); }