From f8a84deb634d7cbc6928f4624521a330c63b426f Mon Sep 17 00:00:00 2001 From: klopez4212 Date: Sat, 4 Jul 2026 12:05:13 +0100 Subject: [PATCH] Widen the work drawer and match generic card styling The drawer grows to w-96 so the PR card's stats fit, and the container wash is gone: the branch chip and card use the same attachment styling as the generic link chips, directly on the chat background. Co-Authored-By: Claude Fable 5 --- desktop/src/features/chats/ui/ChatWorkPanel.tsx | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/desktop/src/features/chats/ui/ChatWorkPanel.tsx b/desktop/src/features/chats/ui/ChatWorkPanel.tsx index 5cd5daa14..4941db6e9 100644 --- a/desktop/src/features/chats/ui/ChatWorkPanel.tsx +++ b/desktop/src/features/chats/ui/ChatWorkPanel.tsx @@ -35,25 +35,21 @@ export function ChatWorkPanel({ aria-hidden={!open} className={cn( "flex shrink-0 flex-col overflow-hidden transition-[width,opacity] duration-300 ease-out", - open ? "w-80 opacity-100" : "pointer-events-none w-0 opacity-0", + open ? "w-96 opacity-100" : "pointer-events-none w-0 opacity-0", )} data-testid="chat-work-panel" > {/* Fixed-width inner wrapper so content never reflows mid-slide. */} -
-
+
+
{branch ? ( -
+ // Same attachment styling as the generic link chips. +
{branch}
) : null} - +