@@ -180,11 +180,13 @@ export const VerifyView = () => {
180
180
181
181
{ selectedContract && < ConstructorArguments abiEncodedConstructorArgs = { abiEncodedConstructorArgs } setAbiEncodedConstructorArgs = { setAbiEncodedConstructorArgs } selectedContract = { selectedContract } abiEncodingError = { abiEncodingError } setAbiEncodingError = { setAbiEncodingError } /> }
182
182
183
- < div className = "pt-3 form-check form-switch" >
184
- < input className = "form-check-input" type = "checkbox" id = "has-proxy" checked = { ! ! hasProxy } onChange = { ( e ) => setHasProxy ( e . target . checked ) } />
185
- < label className = "form-check-label" htmlFor = "has-proxy" >
186
- The deployed contract is behind a proxy
187
- </ label >
183
+ < div className = "pt-3" >
184
+ < div className = "d-flex py-1 align-items-center custom-control custom-checkbox" >
185
+ < input id = "has-proxy" className = "form-check-input custom-control-input" type = "checkbox" checked = { ! ! hasProxy } onChange = { ( e ) => setHasProxy ( e . target . checked ) } />
186
+ < label htmlFor = "has-proxy" className = "m-0 form-check-label custom-control-label" style = { { paddingTop : '2px' } } >
187
+ The deployed contract is behind a proxy
188
+ </ label >
189
+ </ div >
188
190
{ hasProxy && < ContractAddressInput label = "Proxy Address" id = "proxy-address" contractAddress = { proxyAddress } setContractAddress = { setProxyAddress } contractAddressError = { proxyAddressError } setContractAddressError = { setProxyAddressError } /> }
189
191
</ div >
190
192
@@ -194,13 +196,15 @@ export const VerifyView = () => {
194
196
const disabledVerifier = ! chainSettings || ! validConfiguration ( chainSettings , verifierId ) || ( verifierId === 'Sourcify' && ! sourcifySupported )
195
197
196
198
return (
197
- < div key = { verifierId } className = "pt-2 form-check" >
198
- < input className = "form-check-input" type = "checkbox" id = { `verifier-${ verifierId } ` } checked = { ! ! enabledVerifiers [ verifierId ] } onChange = { ( e ) => handleVerifierCheckboxClick ( verifierId , e . target . checked ) } disabled = { disabledVerifier } />
199
+ < div key = { verifierId } className = "pt-2" >
200
+ < div className = "d-flex py-1 align-items-center custom-control custom-checkbox" >
201
+ < input className = "form-check-input custom-control-input" type = "checkbox" id = { `verifier-${ verifierId } ` } checked = { ! ! enabledVerifiers [ verifierId ] } onChange = { ( e ) => handleVerifierCheckboxClick ( verifierId , e . target . checked ) } disabled = { disabledVerifier } />
199
202
200
- < div className = "d-flex flex-column align-items-start" >
201
- < label htmlFor = { `verifier-${ verifierId } ` } style = { { fontSize : '1rem' , lineHeight : '1.5' , color : 'var(--text)' } } className = { `mb-0 font-weight-bold${ ! disabledVerifier ? '' : ' text-secondary' } ` } >
203
+ < label htmlFor = { `verifier-${ verifierId } ` } className = { `m-0 form-check-label custom-control-label large font-weight-bold${ ! disabledVerifier ? '' : ' text-secondary' } ` } style = { { fontSize : '1rem' , lineHeight : '1.5' , color : 'var(--text)' } } >
202
204
{ verifierId }
203
205
</ label >
206
+ </ div >
207
+ < div className = "d-flex flex-column align-items-start pl-4" >
204
208
{ ! chainSettings ? (
205
209
''
206
210
) : ! validConfiguration ( chainSettings , verifierId ) ? (
0 commit comments