File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ interface ICategoriesProps {
7
7
8
8
const Categories = ( { categories } : ICategoriesProps ) => (
9
9
< section className = "container mx-auto bg-white" >
10
- < div className = "grid gap-2 px-2 pt-2 pb-2 lg:px-0 xl:px-0 md:px-0 lg:grid-cols-4 sm:grid-cols-2 md:grid-cols-3 xs:grid-cols-3" >
10
+ < div className = "grid gap-2 px-2 pt-2 pb-2 lg:px-0 xl:px-0 md:px-0 lg:grid-cols-3 sm:grid-cols-1 md:grid-cols-3 xs:grid-cols-3" >
11
11
{ categories . map ( ( { id, name, slug } ) => (
12
12
< Link
13
13
key = { uuidv4 ( ) }
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ const DisplayProducts = ({ products }: IDisplayProductsProps) => (
111
111
>
112
112
< span >
113
113
< div className = "flex justify-center pt-3" >
114
- < p className = "font-bold text-center cursor-pointer" >
114
+ < p className = "font-bold text-center cursor-pointer text-2xl " >
115
115
{ name }
116
116
</ p >
117
117
</ div >
@@ -120,19 +120,19 @@ const DisplayProducts = ({ products }: IDisplayProductsProps) => (
120
120
{ /* Display sale price when on sale */ }
121
121
{ onSale && (
122
122
< div className = "flex justify-center" >
123
- < div className = "pt-1 text-gray-900" >
123
+ < div className = "pt-1 text-gray-900 text-xl " >
124
124
{ variations && filteredVariantPrice ( price , '' ) }
125
125
{ ! variations && salePrice }
126
126
</ div >
127
- < div className = "pt-1 ml-2 text-gray-500 line-through" >
127
+ < div className = "pt-1 ml-2 text-gray-500 line-through text-lg " >
128
128
{ variations && filteredVariantPrice ( price , 'right' ) }
129
129
{ ! variations && regularPrice }
130
130
</ div >
131
131
</ div >
132
132
) }
133
133
{ /* Display regular price when not on sale */ }
134
134
{ ! onSale && (
135
- < p className = "pt-1 text-center text-gray-900" > { price } </ p >
135
+ < p className = "pt-1 text-center text-gray-900 text-xl " > { price } </ p >
136
136
) }
137
137
</ div >
138
138
) ;
You can’t perform that action at this time.
0 commit comments