change log in design

This commit is contained in:
b1ek 2023-08-26 20:14:51 +10:00
parent 20a9e3168a
commit 27db054061
Signed by: blek
GPG Key ID: 14546221E3595D0C
2 changed files with 8 additions and 8 deletions

View File

@ -16,17 +16,10 @@
<div class={style.root}>
<h1>Log In</h1>
<p style="text-align:center">
<p style="text-align:center;margin:0">
To continue, you must choose a homeserver<br/>
<input type='text' bind:value={homeserver} on:input={updStore} style="background: #ffeeee06">
<br/>
<button>What is a homeserver?</button>
<button on:click={() => {route('/explore')}}>Explore homeservers</button>
</p>
<p style="text-align:center">
<button class="primary">Choose {homeserver}</button>
{#if (!homeserverValid)}
<br/>
<span style='font-size:10pt;color:darkred'>
@ -34,4 +27,8 @@
</span>
{/if}
</p>
<p style='text-align:center;margin:0;padding:0'>
<button>What is a homeserver?</button>
<button on:click={() => {route('/explore')}}>Explore homeservers</button>
</p>
</div>

View File

@ -4,4 +4,7 @@
font-size: 20pt;
text-align: center;
}
.signin {
margin-top: 5px;
}
}