Adds dynamic product label font size

This commit is contained in:
Michael Novotny
2023-07-24 14:11:34 -05:00
parent 09250eba83
commit bae5bf1912
12 changed files with 37 additions and 43 deletions

View File

@@ -40,7 +40,7 @@ export default async function CategoryPage({
{products.length === 0 ? (
<p className="py-3 text-lg">{`No products found in this collection`}</p>
) : (
<Grid className="grid-cols-2 lg:grid-cols-3">
<Grid className="grid-cols-1 sm:grid-cols-2 lg:grid-cols-3">
<ProductGridItems products={products} />
</Grid>
)}