From 8690ffb360e8a774560fcafaaeefe37fad1f6948 Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Sat, 19 Nov 2022 11:21:40 +0700 Subject: Fix style --- src/pages/shop/brands.js | 4 ++-- src/pages/shop/product/[slug].js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/pages') diff --git a/src/pages/shop/brands.js b/src/pages/shop/brands.js index f39839af..07ad1f43 100644 --- a/src/pages/shop/brands.js +++ b/src/pages/shop/brands.js @@ -31,7 +31,7 @@ export default function Brands({ initialManufactures }) { dataLength={manufactures.length} next={getMoreManufactures} hasMore={hasMoreManufacture} - className="grid grid-cols-3 gap-4 mt-4 !overflow-x-hidden" + className="grid grid-cols-3 gap-4 mt-4 !overflow-x-hidden bg-white" loader={
@@ -40,7 +40,7 @@ export default function Brands({ initialManufactures }) { > {manufactures?.map((manufacture, index) => ( manufacture.name ? ( - + {manufacture.logo ? ( ) : manufacture.name} diff --git a/src/pages/shop/product/[slug].js b/src/pages/shop/product/[slug].js index bcbebbdf..a42e6cb9 100644 --- a/src/pages/shop/product/[slug].js +++ b/src/pages/shop/product/[slug].js @@ -82,7 +82,7 @@ export default function ProductDetail({product}) {
- +
{product.manufacture.name ?? '-'} -- cgit v1.2.3