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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user