We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c68b0a commit e6f4856Copy full SHA for e6f4856
src/components/Product/SingleProduct.component.tsx
@@ -83,7 +83,7 @@ const SingleProduct = ({ product }: IProductRootObject) => {
83
<div className="text-center md:text-left mb-6">
84
{onSale ? (
85
<div className="flex flex-col md:flex-row items-center md:items-start gap-2">
86
- <p className="text-2xl font-bold text-red-600">
+ <p className="text-xl font-bold text-red-600">
87
{product.variations
88
? filteredVariantPrice(price, '')
89
: salePrice}
@@ -95,7 +95,7 @@ const SingleProduct = ({ product }: IProductRootObject) => {
95
</p>
96
</div>
97
) : (
98
- <p className="text-2xl font-bold">{price}</p>
+ <p className="text-xl font-bold">{price}</p>
99
)}
100
101
0 commit comments