diff options
| -rw-r--r-- | src/components/ProductCard.js | 2 | ||||
| -rw-r--r-- | 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 }) { </Link> <div className="product-card__description"> <div> - {typeof product.manufacture.name !== undefined ? ( + {typeof product.manufacture.name !== "undefined" ? ( <a href={'/shop/brands/' + createSlug(product.manufacture.name, product.manufacture.id)} className="product-card__brand">{product.manufacture.name}</a> ) : ( <span className="product-card__brand">-</span> 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] ; } |
