fix: white text on disconnect screen (#753)
* fix: white text on disconnect screen * fix: white text on something went wrong page
This commit is contained in:
parent
359414f353
commit
e0f01f530f
@ -68,7 +68,7 @@ export const Web3Content = ({ children, appChainId }: Web3ContentProps) => {
|
|||||||
return (
|
return (
|
||||||
<Splash>
|
<Splash>
|
||||||
<div className="flex flex-col items-center gap-12">
|
<div className="flex flex-col items-center gap-12">
|
||||||
<p>Something went wrong: {error.message}</p>
|
<p className="text-white">Something went wrong: {error.message}</p>
|
||||||
<Button onClick={() => connector.deactivate()}>Disconnect</Button>
|
<Button onClick={() => connector.deactivate()}>Disconnect</Button>
|
||||||
</div>
|
</div>
|
||||||
</Splash>
|
</Splash>
|
||||||
@ -79,7 +79,9 @@ export const Web3Content = ({ children, appChainId }: Web3ContentProps) => {
|
|||||||
return (
|
return (
|
||||||
<Splash>
|
<Splash>
|
||||||
<div className="flex flex-col items-center gap-12">
|
<div className="flex flex-col items-center gap-12">
|
||||||
<p>This app only works on chain ID: {appChainId}</p>
|
<p className="text-white">
|
||||||
|
This app only works on chain ID: {appChainId}
|
||||||
|
</p>
|
||||||
<Button onClick={() => connector.deactivate()}>Disconnect</Button>
|
<Button onClick={() => connector.deactivate()}>Disconnect</Button>
|
||||||
</div>
|
</div>
|
||||||
</Splash>
|
</Splash>
|
||||||
|
Loading…
Reference in New Issue
Block a user