diff options
Diffstat (limited to 'src/components/ProductCard.js')
| -rw-r--r-- | src/components/ProductCard.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ProductCard.js b/src/components/ProductCard.js index af96de28..3b0ef162 100644 --- a/src/components/ProductCard.js +++ b/src/components/ProductCard.js @@ -30,7 +30,7 @@ export default function ProductCard({ data }) { <div className="mt-2"> {product.lowest_price.discount_percentage > 0 ? ( <div className="flex gap-x-1 items-center"> - <span className="badge-yellow">{product.lowest_price.discount_percentage}%</span> + <span className="badge-red">{product.lowest_price.discount_percentage}%</span> <p className="text-xs text-gray-800 line-through">{currencyFormat(product.lowest_price.price)}</p> </div> ) : ''} |
