primary button

This commit is contained in:
b1ek 2023-08-23 19:11:41 +10:00
parent dff1f897d1
commit 2c134ea866
Signed by: blek
GPG Key ID: 14546221E3595D0C
2 changed files with 12 additions and 1 deletions

View File

@ -36,4 +36,9 @@ button {
transform: scale(0.98); transform: scale(0.98);
background: #0004; background: #0004;
} }
&.primary {
background: #0441;
border: 1px solid #203030;
}
} }

View File

@ -10,8 +10,14 @@
<h1>Log In</h1> <h1>Log In</h1>
<p style="text-align:center"> <p style="text-align:center">
To continue, you must choose a homeserver<br/> To continue, you must choose a homeserver<br/>
<input type='text' value={homeserver}><br/>
<input type='text' value={homeserver} style="background: #ffeeee06">
<br/>
<button>What is a homeserver?</button> <button>What is a homeserver?</button>
<button>Explore homeservers</button> <button>Explore homeservers</button>
</p> </p>
<p style="text-align:center">
<button class="primary">Choose {homeserver}</button>
</p>
</div> </div>