From c9d61c3d127224d5828325b782d292681568f728 Mon Sep 17 00:00:00 2001 From: Keith Smith Date: Sun, 16 Aug 2026 10:09:49 -0600 Subject: [PATCH] Fix composer send button clipped off-screen on mobile (#24) The composer's message textarea lacked min-width: 0, so on browsers that compute a larger default intrinsic width for flex-child form controls (observed on Firefox for Android), the row could overflow and push the fixed-width send button past the viewport edge instead of shrinking the textarea to fit. Co-Authored-By: Claude Sonnet 5 --- frontend/src/components/Composer.css | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/Composer.css b/frontend/src/components/Composer.css index 63abfb3..37a1fb6 100644 --- a/frontend/src/components/Composer.css +++ b/frontend/src/components/Composer.css @@ -15,6 +15,7 @@ .composer-box textarea { flex: 1; + min-width: 0; resize: none; background: var(--ds-surface-2); border: 1px solid var(--ds-border);