From e49cb8308c73f31007b3773771cd9f871b31dc3b Mon Sep 17 00:00:00 2001 From: loof2736 Date: Sat, 9 Aug 2025 10:28:29 -0400 Subject: [PATCH] Modify padding of textarea elements --- CSS/scyfin-theme.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CSS/scyfin-theme.css b/CSS/scyfin-theme.css index b018be5..54958d5 100644 --- a/CSS/scyfin-theme.css +++ b/CSS/scyfin-theme.css @@ -780,6 +780,10 @@ html, .defaultCardBackground5 { background-color: var(--primary-alt5) !important; } +/* Modify padding for textarea items so the bottom isn't cut off */ +textarea { + padding-bottom: 10px !important; +}