File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -79,13 +79,13 @@ const SingleProduct = ({ product }: IProductRootObject) => {
79
79
/>
80
80
) }
81
81
< div className = "px-4 md:ml-8" >
82
- < h1 className = "text-3xl font-bold text-center md:text-left mb-4" >
82
+ < h1 className = "text-2xl font-bold text-center md:text-left mb-4" >
83
83
{ name }
84
84
</ h1 >
85
85
{ /* Display sale price when on sale */ }
86
86
{ onSale && (
87
87
< div className = "flex flex-col md:flex-row items-center md:items-start mb-4" >
88
- < p className = "text-3xl font-bold text-gray-900" >
88
+ < p className = "text-2xl font-bold text-gray-900" >
89
89
{ product . variations && filteredVariantPrice ( price , '' ) }
90
90
{ ! product . variations && salePrice }
91
91
</ p >
@@ -97,7 +97,7 @@ const SingleProduct = ({ product }: IProductRootObject) => {
97
97
) }
98
98
{ /* Display regular price when not on sale */ }
99
99
{ ! onSale && (
100
- < p className = "text-2xl font-bold mb-4" > { price } </ p >
100
+ < p className = "text-2xl font-bold mb-4" > { price } </ p >
101
101
) }
102
102
< p className = "text-lg mb-4 text-center md:text-left" > { DESCRIPTION_WITHOUT_HTML } </ p >
103
103
{ Boolean ( product . stockQuantity ) && (
You can’t perform that action at this time.
0 commit comments