From dd0e3e0a052ae2b0804015516e9ba7a3cba979b9 Mon Sep 17 00:00:00 2001 From: Brooklyn Nicholson Date: Mon, 15 Jun 2026 23:37:58 -0500 Subject: [PATCH] fix(desktop): tighten thread content top padding --- apps/desktop/src/components/assistant-ui/thread-list.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/src/components/assistant-ui/thread-list.tsx b/apps/desktop/src/components/assistant-ui/thread-list.tsx index 0a4be83961a..e3faf64547f 100644 --- a/apps/desktop/src/components/assistant-ui/thread-list.tsx +++ b/apps/desktop/src/components/assistant-ui/thread-list.tsx @@ -140,7 +140,7 @@ const ThreadMessageListInner: FC = ({ ? 'pt-[calc(var(--titlebar-height)+0.75rem)]' : isSecondaryWindow() ? 'pt-6' - : 'pt-[calc(var(--titlebar-height)+1.5rem)]' + : 'pt-[calc(var(--titlebar-height)-0.5rem)]' useEffect(() => setThreadAtBottom(isAtBottom), [isAtBottom]) useEffect(() => () => resetThreadScroll(), [])