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