From 13f5c4ac0ceae660e650529e569d5d4ebc3222b2 Mon Sep 17 00:00:00 2001 From: Nicolas Varrot Date: Fri, 13 Feb 2026 11:52:39 +0000 Subject: [PATCH] fix: textarea overflow and width in highlighted input container --- src/index.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/index.css b/src/index.css index 5b8cf5d..f43ffd0 100644 --- a/src/index.css +++ b/src/index.css @@ -185,6 +185,8 @@ html, body { .ht-container { position: relative; flex: 1; + min-width: 0; + overflow: hidden; } .ht-backdrop, @@ -215,6 +217,7 @@ html, body { .ht-textarea { position: relative; + width: 100%; color: transparent; caret-color: var(--pc-text-primary); background: transparent !important;