diff --git a/components/product-card.tsx b/components/product-card.tsx index 41c2385..b6b0fdf 100644 --- a/components/product-card.tsx +++ b/components/product-card.tsx @@ -95,7 +95,7 @@ export function ProductCard({ style={{ animationDelay: `${index * 100}ms` }} > setIsExpanded(!isExpanded)} >
@@ -109,7 +109,7 @@ export function ProductCard({
{product.name}
- + {product.category || 'Sin categoría'}
@@ -141,10 +141,10 @@ export function ProductCard({ onClick={handleOpenProduce} disabled={product.maxPossibleBatches <= 0} size="sm" - className="h-8 text-xs font-bold rounded-lg bg-amber-500 hover:bg-amber-600 text-white shadow-lg shadow-amber-500/20 disabled:bg-muted-foreground/20 disabled:text-muted-foreground disabled:shadow-none px-3" + className="h-8 text-xs font-bold rounded-lg bg-amber-500 hover:bg-amber-600 text-white shadow-lg shadow-amber-500/20 disabled:bg-muted-foreground/20 disabled:text-muted-foreground disabled:shadow-none sm:px-3 px-0 sm:w-auto w-8" > - - Producir + + Producir )} {product.preparation && ( @@ -152,10 +152,10 @@ export function ProductCard({ onClick={(e) => { e.stopPropagation(); setIsRecipeOpen(true) }} variant="outline" size="sm" - className="h-8 text-xs font-bold rounded-lg px-3" + className="h-8 text-xs font-bold rounded-lg sm:px-3 px-0 sm:w-auto w-8" > - - Receta + + Receta )}