summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorIT Fixcomart <it@fixcomart.co.id>2023-08-08 03:44:57 +0000
committerIT Fixcomart <it@fixcomart.co.id>2023-08-08 03:44:57 +0000
commit863047e92834479ce8edb576b57b129c611821a8 (patch)
tree943d4586d8e48c5d78a0cc1bf865a0893da917fc /src/lib
parent0215ec338889bdad479b568c50f32ddce863d6bf (diff)
parenteadb2ba5872fc2e9a756948d9bbfa17f0958690a (diff)
Merged in load-performance (pull request #43)
Update product card height
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/product/components/ProductCard.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/product/components/ProductCard.jsx b/src/lib/product/components/ProductCard.jsx
index 51a369c4..13fe07fd 100644
--- a/src/lib/product/components/ProductCard.jsx
+++ b/src/lib/product/components/ProductCard.jsx
@@ -12,7 +12,7 @@ const ProductCard = ({ product, simpleTitle, variant = 'vertical' }) => {
if (variant == 'vertical') {
return (
- <div className='rounded shadow-sm border border-gray_r-4 bg-white h-[280px] md:h-[320px]'>
+ <div className='rounded shadow-sm border border-gray_r-4 bg-white h-[300px] md:h-[350px]'>
<Link
href={createSlug('/shop/product/', product?.name, product?.id)}
className='border-b border-gray_r-4 relative'