From e6d7471ab6a64a438d42000898d93b4518d77b38 Mon Sep 17 00:00:00 2001 From: hikemaniac <31667811+hikemaniac@users.noreply.github.com> Date: Sun, 15 Dec 2019 16:04:29 +0100 Subject: [PATCH] Fixed comment textarea going off the sidebar, added border-radius to form fields --- app/assets/stylesheets/common.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss index 54fd52dd2..df7eb57c7 100644 --- a/app/assets/stylesheets/common.scss +++ b/app/assets/stylesheets/common.scss @@ -2092,6 +2092,7 @@ textarea { color: #222; background-color: #fff; border: 1px solid $grey; + border-radius: 3px; padding: 2px 5px; margin: 0; width: 200px; @@ -2104,6 +2105,11 @@ textarea { textarea { padding: 5px; width: 100%; + min-height: 50px; +} + +textarea.comment { + resize: vertical; } /* Rules for user images */ -- 2.43.2