From 9a6f788b98fb97e129d19fc914159046b64699b3 Mon Sep 17 00:00:00 2001 From: Gigi Date: Mon, 13 Oct 2025 12:55:00 +0200 Subject: [PATCH] feat: move highlight timestamp to top-right corner of cards --- src/components/HighlightItem.tsx | 8 ++++---- src/styles/layout/highlights.css | 4 +++- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/components/HighlightItem.tsx b/src/components/HighlightItem.tsx index a2a6d641..d9514d91 100644 --- a/src/components/HighlightItem.tsx +++ b/src/components/HighlightItem.tsx @@ -303,6 +303,10 @@ export const HighlightItem: React.FC = ({ onClick={handleItemClick} style={{ cursor: onHighlightClick ? 'pointer' : 'default' }} > + + {formatDateCompact(highlight.created_at)} + +
{relayIndicator && ( @@ -333,10 +337,6 @@ export const HighlightItem: React.FC = ({ {getUserDisplayName()} - - - {formatDateCompact(highlight.created_at)} -