@@ -88,8 +88,8 @@ const YourComponent = () => {
88
88
89
89
return (
90
90
< div className = "flex flex-col gap-4 mt-4" >
91
- < section className = "flex flex-col items-center md:items-start md:justify-between md :flex-row" >
92
- < div className = "flex flex-col gap-4 w-1/2" >
91
+ < section className = "flex flex-col gap-6 lg:gap-4 items-center md:items-start md:justify-between lg :flex-row" >
92
+ < div className = "flex flex-col gap-4 w-full lg:w- 1/2" >
93
93
{ /* Seller Info */ }
94
94
< div className = "flex flex-col gap-2" >
95
95
< Label > Seller name</ Label >
@@ -186,22 +186,24 @@ const YourComponent = () => {
186
186
</ div >
187
187
</ div >
188
188
</ div >
189
- < PaymentWidget
190
- amountInUSD = { formValues . amountInUSD || 0 }
191
- sellerInfo = { {
192
- name : formValues . sellerInfo ?. name ,
193
- logo : formValues . sellerInfo ?. logo ,
194
- } }
195
- productInfo = { {
196
- description : formValues . productInfo ?. description ,
197
- image : formValues . productInfo ?. image ,
198
- name : formValues . productInfo ?. name ,
199
- } }
200
- builderId = { process . env . NEXT_PUBLIC_BUILDER_ID }
201
- sellerAddress = { formValues . sellerAddress }
202
- // @ts -ignore
203
- supportedCurrencies = { formValues . supportedCurrencies }
204
- />
189
+ < div className = "w-full lg:w-1/2" >
190
+ < PaymentWidget
191
+ amountInUSD = { formValues . amountInUSD || 0 }
192
+ sellerInfo = { {
193
+ name : formValues . sellerInfo ?. name ,
194
+ logo : formValues . sellerInfo ?. logo ,
195
+ } }
196
+ productInfo = { {
197
+ description : formValues . productInfo ?. description ,
198
+ image : formValues . productInfo ?. image ,
199
+ name : formValues . productInfo ?. name ,
200
+ } }
201
+ builderId = { process . env . NEXT_PUBLIC_BUILDER_ID }
202
+ sellerAddress = { formValues . sellerAddress }
203
+ // @ts -ignore
204
+ supportedCurrencies = { formValues . supportedCurrencies }
205
+ />
206
+ </ div >
205
207
</ section >
206
208
207
209
< div className = "mt-8 w-full" >
0 commit comments