Some more style changes for the new team name

This commit is contained in:
Blake Duncan
2023-05-09 11:40:55 +01:00
parent 4dbcc4596d
commit 896ae12059
3 changed files with 10 additions and 8 deletions

View File

@@ -14,6 +14,7 @@ export default function Header() {
height={40}
src={waxGreenLogo}
alt="WAX logo"
style={{ cursor: 'pointer' }}
/>
</Link>
<div className={styles.logoLinks}>

View File

@@ -204,29 +204,29 @@ export default function Demo() {
return (
<>
<Head>
<title>WAX Wallet</title>
<title>WAX</title>
</Head>
<Header />
<div className={styles.main}>
<h1>See the WAX wallet v1 in action:</h1>
<h1>See the WAX v1 in action:</h1>
<span style={{ height: '40px' }} />
<Fade bottom>
<div style={{ position: 'relative', width: '100%' }}>
{!wallet.address && (
<h3>
Please wait while we create your WAX wallet on the Goerli
Please wait while we create your WAX account on the Goerli
Testnet.
</h3>
)}
{wallet.address && !firstMint && (
<h3>
We created a WAX Wallet for you on the Goerli Testnet and are
We created a WAX account for you on the Goerli Testnet and are
minting some demo tokens.
</h3>
)}
{wallet.address && firstMint && (
<h3>
We created a WAX Wallet for you on the Goerli Testnet and have
We created a WAX account for you on the Goerli Testnet and have
minted some demo tokens.
</h3>
)}
@@ -302,7 +302,7 @@ export default function Demo() {
onClick={() => (balanceChanging
? null
: Swal.fire({
html: `<div style="text-align: left"><span style="font-size: 12px">Arbitrum testnet</span><h2>WAX Wallet</h2><h3>APPROVE $TOKEN TRANSFER</h3><p><strong>From: </strong>${wallet.address}</p><p><strong>To: </strong>${spenderContract.address}</p><p><strong>Info: </strong><a href="https://getwax.org/">https://getwax.org/</a></p><p><strong>Estimated gas fee: </strong>$O <span style="opacity: 1; display: inline; border-radius: 2px; background-color: #bcffbc; border: solid 1px #a5e1a5;font-size: 12px;padding: 2px 4px">dApp sponsored</span></p></div>`,
html: `<div style="text-align: left"><span style="font-size: 12px">Arbitrum testnet</span><h2>WAX</h2><h3>APPROVE $TOKEN TRANSFER</h3><p><strong>From: </strong>${wallet.address}</p><p><strong>To: </strong>${spenderContract.address}</p><p><strong>Info: </strong><a href="https://getwax.org/">https://getwax.org/</a></p><p><strong>Estimated gas fee: </strong>$O <span style="opacity: 1; display: inline; border-radius: 2px; background-color: #bcffbc; border: solid 1px #a5e1a5;font-size: 12px;padding: 2px 4px">dApp sponsored</span></p></div>`,
confirmButtonText: 'Confirm',
denyButtonText: 'Reject',
showCloseButton: true,

View File

@@ -38,7 +38,8 @@
}
.buttonPrimary {
background-color: #771cf9;
background-color: #76FFCE;
color: black;
height: 100%;
display: flex;
justify-content: center;
@@ -47,7 +48,7 @@
}
.buttonPrimary:hover {
background-color: #700cff;
background-color: #3dd49e;
}
.buttonSecondary {