From dd1007165103e82f5d21ef9cb89f015be2310fb5 Mon Sep 17 00:00:00 2001 From: Miqdad Date: Wed, 15 Oct 2025 23:27:23 +0700 Subject: line clamp product card desktop --- src/lib/product/components/ProductCard.jsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/lib/product/components/ProductCard.jsx b/src/lib/product/components/ProductCard.jsx index 14da22f3..34137482 100644 --- a/src/lib/product/components/ProductCard.jsx +++ b/src/lib/product/components/ProductCard.jsx @@ -195,7 +195,13 @@ const ProductCard = ({ product, simpleTitle, variant = 'vertical' }) => { {product?.name} @@ -494,7 +500,9 @@ const ProductCard = ({ product, simpleTitle, variant = 'vertical' }) => { {(product?.stockTotal > 0 || product?.qtySold > 0) && (
{product?.stockTotal > 0 && ( -
Ready Stock
+
+ Ready Stock +
)} {product?.qtySold > 0 && ( -- cgit v1.2.3