Skip to content

Commit 01184e9

Browse files
committed
Product color
1 parent b909ec8 commit 01184e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Product/DisplayProducts.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ const DisplayProducts = ({ products }: IDisplayProductsProps) => (
124124
{variations && filteredVariantPrice(price, '')}
125125
{!variations && salePrice}
126126
</div>
127-
<div className="pt-1 ml-2 text-gray-900 line-through text-lg">
127+
<div className="pt-1 ml-2 text-gray-500 line-through text-lg">
128128
{variations && filteredVariantPrice(price, 'right')}
129129
{!variations && regularPrice}
130130
</div>

src/components/Product/SingleProduct.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ const SingleProduct = ({ product }: IProductRootObject) => {
8585
{/* Display sale price when on sale */}
8686
{onSale && (
8787
<div className="flex flex-col md:flex-row items-center md:items-start mb-4">
88-
<p className="text-3xl font-bold text-red-600">
88+
<p className="text-3xl font-bold text-gray-900">
8989
{product.variations && filteredVariantPrice(price, '')}
9090
{!product.variations && salePrice}
9191
</p>

0 commit comments

Comments
 (0)