File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/(chainPage)/components/client Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ export function FaucetButton({
136136 // loading state
137137 if ( faucetWalletBalanceQuery . isPending || canClaimFaucetQuery . isPending ) {
138138 return (
139- < Button variant = "outline" className = "w-full gap-2 " >
139+ < Button variant = "outline" className = "w-full gap-4 " >
140140 Checking Faucet < Spinner className = "size-3" />
141141 </ Button >
142142 ) ;
@@ -192,7 +192,7 @@ export function FaucetButton({
192192 < div className = "flex w-full flex-col text-center" >
193193 < Form { ...form } >
194194 < form onSubmit = { form . handleSubmit ( claimFunds ) } >
195- < Button variant = "primary" className = "w-full gap-2 " type = "submit" >
195+ < Button variant = "primary" className = "w-full gap-4 " type = "submit" >
196196 { claimMutation . isPending ? (
197197 < >
198198 Claiming < Spinner className = "size-3" />
@@ -208,6 +208,7 @@ export function FaucetButton({
208208 < FormItem >
209209 < FormControl >
210210 < Turnstile
211+ className = "mt-2"
211212 siteKey = { TURNSTILE_SITE_KEY }
212213 onSuccess = { ( token ) => field . onChange ( token ) }
213214 />
You can’t perform that action at this time.
0 commit comments