Skip to content

Commit

Permalink
chore: change navbar color and delete footer
Browse files Browse the repository at this point in the history
  • Loading branch information
iczc committed Aug 15, 2021
1 parent 175714a commit 1d05249
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions web/src/Faucet.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
</script>

<main>
<nav class="navbar is-link" role="navigation" aria-label="main navigation">
<nav class="navbar is-dark" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="/">
<strong>Ether Faucet</strong>
Expand Down Expand Up @@ -76,9 +76,7 @@
<h1 class="title">Receive {faucetInfo.payout} ETH per request</h1>
<h2 class="subtitle">
Serving from account
<span class="tag is-warning is-light is-medium"
>{faucetInfo.account}</span
>
<span class="tag is-light is-medium">{faucetInfo.account}</span>
</h2>
</div>
</section>
Expand All @@ -94,15 +92,8 @@
placeholder="0x..."
/>
</div>
<button on:click={handleRequest} class="button is-danger">Request</button>
<button on:click={handleRequest} class="button is-primary">Request</button
>
</div>
</div>

<footer class="footer">
<div class="content has-text-centered">
<p>
Powered by <a href="https://chainflag.org" target="_blank">ChainFlag</a>
</p>
</div>
</footer>
</main>

0 comments on commit 1d05249

Please sign in to comment.