Ensure product titles have minimum 2-line height

Add min-h-[2.5rem] to product titles for consistent card layout
across all products, regardless of title length.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
dwindown
2026-02-02 19:05:23 +07:00
parent da84d0e44d
commit 8e64780f72

View File

@@ -232,7 +232,7 @@ export default function Products() {
<Card key={product.id} className="border-2 border-border shadow-sm hover:shadow-md transition-shadow h-full flex flex-col">
<CardHeader className="pb-4">
<div className="flex justify-between items-start gap-2 mb-2">
<CardTitle className="text-xl line-clamp-2 leading-tight">{product.title}</CardTitle>
<CardTitle className="text-xl line-clamp-2 leading-tight min-h-[2.5rem]">{product.title}</CardTitle>
<Badge className="shrink-0">
{getTypeLabel(product.type)}
</Badge>