We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f3d855e + a1cb5f6 commit 72d52b8Copy full SHA for 72d52b8
src/components/EventCard.tsx
@@ -59,7 +59,9 @@ const EventCard: React.FC<EventCardProps> = ({
59
<h3 className="text-xl font-bold md:text-2xl">{title}</h3>
60
<span className="text-sm opacity-60">{location}</span>
61
</div>
62
- <p className="md:text-sm md:leading-[1.6rem]">{description}</p>
+ <p className="line-clamp-6 md:text-sm md:leading-[1.6rem]">
63
+ {description}
64
+ </p>
65
</CardContent>
66
<CardFooter className="p-4 pt-0">
67
<ButtonLink href={href} variant="outline" className="w-full text-sm">
0 commit comments