Cap list view description to 3 lines

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-27 00:07:55 +02:00
parent 001d2ddcf0
commit 31cef555a9

View File

@@ -313,7 +313,7 @@ export default function VideoCard({ video, size = "md", onDismiss, variant = "gr
{/* Description snippet — desktop only, URLs stripped */} {/* Description snippet — desktop only, URLs stripped */}
{video.description && snippetText(video.description) && ( {video.description && snippetText(video.description) && (
<p className="hidden sm:block text-[11px] leading-relaxed text-zinc-500 line-clamp-1"> <p className="hidden sm:block text-[11px] leading-relaxed text-zinc-500 line-clamp-3">
{snippetText(video.description)} {snippetText(video.description)}
</p> </p>
)} )}