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 <noreply@anthropic.com>
This commit is contained in:
2026-08-16 10:09:49 -06:00
co-authored by Claude Sonnet 5
parent b451504d07
commit c9d61c3d12
+1
View File
@@ -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);