diff --git a/app/shop/components/ProductGrid.tsx b/app/shop/components/ProductGrid.tsx index e3bb959..dc24e31 100644 --- a/app/shop/components/ProductGrid.tsx +++ b/app/shop/components/ProductGrid.tsx @@ -31,7 +31,11 @@ export async function ProductGrid() { return (
- + {/* 2-up from the mobile breakpoint (sm, 640px) through 1023px — was + sm:grid-cols-12 with each card sm:col-span-3 (4-up), too narrow a + card through that tablet range. 4-up now only kicks in at lg + (1024px), true mobile (below sm) unchanged. */} + {products.map((product) => { const discount = discountPercent(product.price, product.compareAtPrice); const taxRate = effectiveTaxRate(product, defaultTaxRate); @@ -48,14 +52,14 @@ export async function ProductGrid() { return (
{product.name} {fullyOutOfStock ? (