From a683fea82b790d8a26bd9eaf6d1f4d40a49baf07 Mon Sep 17 00:00:00 2001 From: Philip Zeyliger Date: Tue, 27 Jan 2026 14:50:47 -0800 Subject: [PATCH] shelley: Fix scrollbar appearing in empty message input MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Prompt: See that scroll bar in the message input box? It shouldn't be there! Follow-up: can we just make the initial content better? Increase min-height from 44px to 46px to properly fit single line of text (16px font × 1.5 line-height = 24px + 20px padding) with a small buffer to prevent scrollbar. Co-authored-by: Shelley --- ui/src/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/styles.css b/ui/src/styles.css index 0f6dbb891a819fd64b1e9d66f5ca3bd1e63bfb58..9174e14317dc7f54d943cac18a0fe54debe7a872 100644 --- a/ui/src/styles.css +++ b/ui/src/styles.css @@ -1841,7 +1841,7 @@ button { .message-textarea { flex: 1; - min-height: 44px; + min-height: 46px; max-height: 200px; padding: 0.625rem 1rem; border: 1.5px solid var(--border);