mirror of
https://github.com/aaif-goose/goose.git
synced 2026-07-03 14:10:03 +02:00
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:
@@ -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 =
|
||||
|
||||
Reference in New Issue
Block a user