File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ const DisplayProducts = ({ products }: IDisplayProductsProps) => (
100
100
< Link href = { `/produkt/${ encodeURIComponent ( slug ) } ` } >
101
101
< span >
102
102
< div className = "mt-4" >
103
- < p className = "text-2xl font-bold text-center cursor-pointer hover:text-gray-600 transition-colors" >
103
+ < p className = "text-xl font-bold text-center cursor-pointer hover:text-gray-600 transition-colors" >
104
104
{ name }
105
105
</ p >
106
106
</ div >
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ const SingleProduct = ({ product }: IProductRootObject) => {
50
50
< section className = "bg-white mb-[8rem] md:mb-12" >
51
51
{ isLoading ? (
52
52
< div className = "h-56 mt-20" >
53
- < p className = "text-2xl font-bold text-center" > Laster produkt ...</ p >
53
+ < p className = "text-xl font-bold text-center" > Laster produkt ...</ p >
54
54
< br />
55
55
< LoadingSpinner />
56
56
</ div >
@@ -83,7 +83,7 @@ const SingleProduct = ({ product }: IProductRootObject) => {
83
83
< div className = "text-center md:text-left mb-6" >
84
84
{ onSale ? (
85
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" >
86
+ < p className = "text-xl font-bold text-red-600" >
87
87
{ product . variations
88
88
? filteredVariantPrice ( price , '' )
89
89
: salePrice }
@@ -95,7 +95,7 @@ const SingleProduct = ({ product }: IProductRootObject) => {
95
95
</ p >
96
96
</ div >
97
97
) : (
98
- < p className = "text-2xl font-bold" > { price } </ p >
98
+ < p className = "text-xl font-bold" > { price } </ p >
99
99
) }
100
100
</ div >
101
101
You can’t perform that action at this time.
0 commit comments