1
0
Fork 0
mirror of synced 2024-09-30 09:07:25 +13:00

Fix login component with login app names

This commit is contained in:
Andrew Kingston 2020-10-16 15:32:02 +01:00
parent edb91717ef
commit 6b077d86fd

View file

@ -65,9 +65,7 @@
placeholder="Password"
class={_inputClass} />
</div>
</div>
<div class="login-button-container">
<button disabled={loading} on:click={login} class={_buttonClass}>
{buttonText || 'Log In'}
</button>
@ -109,11 +107,6 @@
margin-bottom: 20px;
}
.login-button-container {
margin-top: 6px;
max-width: 100%;
}
.header-content {
font-family: Inter;
font-weight: 700;
@ -143,10 +136,11 @@
flex-direction: column;
align-items: stretch;
width: 300px;
margin: auto;
gap: 8px;
}
.control {
padding: 6px 0px;
width: 100%;
}
@ -193,5 +187,6 @@
h2 {
text-align: center;
margin-bottom: 10px;
}
</style>