From 64a1c8bbf294f73060ccdb34b8a5d7f5da7e4538 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 17 Jan 2026 19:57:30 +0000 Subject: [PATCH] refactor: Reduce 2nd level reply padding - Reduce left margin from ml-8 to ml-6 - Reduce left padding from pl-4 to pl-3 - Reduce top margin from mt-2 to mt-1 - Makes nested replies more compact --- src/components/ThreadConversation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ThreadConversation.tsx b/src/components/ThreadConversation.tsx index 9ba0051..81a548e 100644 --- a/src/components/ThreadConversation.tsx +++ b/src/components/ThreadConversation.tsx @@ -204,7 +204,7 @@ export function ThreadConversation({ {/* Second-level replies (nested, indented) */} {hasChildren && !isCollapsed && ( -
+
{node.children.map((child) => { const isChildFocused = focusedEventId === child.id; return (