From 350523c51ce5c790a382ada75fdab5f6c7583100 Mon Sep 17 00:00:00 2001 From: Matt Date: Sat, 21 Dec 2024 18:53:49 -0500 Subject: [PATCH] Shrink font/spacing --- .../src/components/dashboard/ProductGrid.jsx | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/dashboard/src/components/dashboard/ProductGrid.jsx b/dashboard/src/components/dashboard/ProductGrid.jsx index 83e60bc..4b4b486 100644 --- a/dashboard/src/components/dashboard/ProductGrid.jsx +++ b/dashboard/src/components/dashboard/ProductGrid.jsx @@ -424,7 +424,7 @@ const ProductGrid = ({ className="hover:bg-muted/50 transition-colors" > {columnVisibility.image && ( - + {product.ImgThumb && ( )} {columnVisibility.name && ( - +
{product.name} -
)} {columnVisibility.totalQuantity && ( - + {product.totalQuantity} )} {columnVisibility.totalRevenue && ( - + ${product.totalRevenue.toFixed(2)} )} {columnVisibility.orderCount && ( - + {product.orderCount} )} {columnVisibility.price && ( - + ${product.price.toFixed(2)} )}