From 77aa2e658570152777e1a156bdf9f6d26eccd418 Mon Sep 17 00:00:00 2001 From: Gagancreates Date: Mon, 8 Jun 2026 01:35:08 +0530 Subject: [PATCH] fix: move @container to card root so breakpoints track panel width Putting container-type on the toolbar's own flex row made it stop stretching to fill the card and hug its collapsed content instead, so the query read a permanently-narrow width that never grew on widen. The card root reliably spans the full panel width. --- .../apps/renderer/src/components/chat-input-with-mentions.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/x/apps/renderer/src/components/chat-input-with-mentions.tsx b/apps/x/apps/renderer/src/components/chat-input-with-mentions.tsx index 46171662..d297bf9c 100644 --- a/apps/x/apps/renderer/src/components/chat-input-with-mentions.tsx +++ b/apps/x/apps/renderer/src/components/chat-input-with-mentions.tsx @@ -653,7 +653,7 @@ function ChatInputInner({ const currentWorkDirPath = workDir ? compactWorkDirPath(workDir) : '' return ( -
+
{attachments.length > 0 && (
{attachments.map((attachment) => { @@ -756,7 +756,7 @@ function ChatInputInner({ className="min-h-6 rounded-none border-0 py-0 shadow-none focus-visible:ring-0" />
-
+