From 2348e1ea071ebf3a80f6a36bcf45eca3391bb3bf Mon Sep 17 00:00:00 2001 From: Taylor Ho Date: Mon, 13 Apr 2026 20:52:06 -1000 Subject: [PATCH] fix: increase bottom padding so last message hover actions aren't clipped Replace py-4 with pt-4 pb-12 on the timeline inner container to give the last message enough room for HoverCard actions to render. --- ui/goose2/src/features/chat/ui/MessageTimeline.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/goose2/src/features/chat/ui/MessageTimeline.tsx b/ui/goose2/src/features/chat/ui/MessageTimeline.tsx index 8370b319fa..d7202e736e 100644 --- a/ui/goose2/src/features/chat/ui/MessageTimeline.tsx +++ b/ui/goose2/src/features/chat/ui/MessageTimeline.tsx @@ -180,7 +180,7 @@ export function MessageTimeline({ aria-label={t("timeline.ariaLabel")} aria-live="polite" > -
+
{visibleMessages.map((message, index) => { const prev = index > 0 ? visibleMessages[index - 1] : null; const showDateSeparator =