From 2abf266e5cfd40cf19be391d960bddba71907628 Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Wed, 16 Nov 2022 13:40:41 +0700 Subject: fix product no brand & product name height --- src/components/ProductCard.js | 2 +- src/styles/globals.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ProductCard.js b/src/components/ProductCard.js index 49bba235..77f902e0 100644 --- a/src/components/ProductCard.js +++ b/src/components/ProductCard.js @@ -15,7 +15,7 @@ export default function ProductCard({ data }) {
- {typeof product.manufacture.name !== undefined ? ( + {typeof product.manufacture.name !== "undefined" ? ( {product.manufacture.name} ) : ( - diff --git a/src/styles/globals.css b/src/styles/globals.css index 6a5f86a8..20a86ec4 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -143,7 +143,7 @@ html, body { @apply text-sm text-gray-900 - h-16 + h-[60px] ; } -- cgit v1.2.3