Smaller event thumb text

This commit is contained in:
Nicolas Mowen 2024-02-08 20:32:18 -07:00
parent d90505388b
commit 5bb382703a

View File

@ -20,7 +20,7 @@ export function EventThumbnail({ event, onFavorite }: EventThumbnailProps) {
onClick={(e: Event) => (onFavorite ? onFavorite(e, event) : null)}
fill={event.retain_indefinitely ? "currentColor" : "none"}
/>
<div className="absolute left-1 bottom-0 text-sm text-white">
<div className="absolute left-1 bottom-0 text-xs text-white">
<TimeAgo time={event.start_time * 1000} dense />
</div>
</div>