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.
This commit is contained in:
Taylor Ho
2026-04-13 20:52:06 -10:00
parent e5061bcf30
commit 2348e1ea07
@@ -180,7 +180,7 @@ export function MessageTimeline({
aria-label={t("timeline.ariaLabel")}
aria-live="polite"
>
<div className="mx-auto max-w-3xl py-4">
<div className="mx-auto max-w-3xl pt-4 pb-12">
{visibleMessages.map((message, index) => {
const prev = index > 0 ? visibleMessages[index - 1] : null;
const showDateSeparator =