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
This commit is contained in:
Claude
2026-01-17 19:57:30 +00:00
parent 1266003c4b
commit 64a1c8bbf2

View File

@@ -204,7 +204,7 @@ export function ThreadConversation({
{/* Second-level replies (nested, indented) */}
{hasChildren && !isCollapsed && (
<div className="ml-8 mt-2 space-y-0 border-l-2 border-border pl-4">
<div className="ml-6 mt-1 space-y-0 border-l-2 border-border pl-3">
{node.children.map((child) => {
const isChildFocused = focusedEventId === child.id;
return (