Further work towards login designs.
This commit is contained in:
parent
1cb4387fc8
commit
75b1c25199
Binary file not shown.
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 11 KiB |
|
@ -13,24 +13,30 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
.outer {
|
||||||
|
border: 1px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.inner {
|
.inner {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
background-color: #4285f4;
|
align-items: center;
|
||||||
|
|
||||||
|
background-color: var(--background-alt);
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
padding-right: 12px;
|
padding-top: var(--spacing-xs);
|
||||||
|
padding-bottom: var(--spacing-xs);
|
||||||
}
|
}
|
||||||
|
|
||||||
.inner img {
|
.inner img {
|
||||||
width: 24px;
|
width: 24px;
|
||||||
margin: 1px 14px 1px 1px;
|
margin: 1px 14px 1px 1px;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
background-color: #fff;
|
|
||||||
padding: 8px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.inner p {
|
.inner p {
|
||||||
margin: 12px 0 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.outer :global(a) {
|
.outer :global(a) {
|
||||||
|
|
|
@ -41,21 +41,16 @@
|
||||||
showConfirmButton={false}
|
showConfirmButton={false}
|
||||||
showCloseIcon={false}
|
showCloseIcon={false}
|
||||||
>
|
>
|
||||||
|
<div class="sso">
|
||||||
|
<GoogleButton />
|
||||||
|
</div>
|
||||||
|
<Divider noGrid />
|
||||||
<Input label="Email" bind:value={username} />
|
<Input label="Email" bind:value={username} />
|
||||||
<Input label="Password" type="password" on:change bind:value={password} />
|
<Input label="Password" type="password" on:change bind:value={password} />
|
||||||
<div class="login-buttons">
|
<div class="login-buttons">
|
||||||
<Button secondary on:click={forgot}>Forgot Password?</Button>
|
<Button secondary on:click={forgot}>Forgot Password?</Button>
|
||||||
<Button cta on:click={login}>Login</Button>
|
<Button cta on:click={login}>Login</Button>
|
||||||
</div>
|
</div>
|
||||||
<div class="or-divide">
|
|
||||||
<Divider noGrid />
|
|
||||||
<div class="or-label">
|
|
||||||
OR
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="sso">
|
|
||||||
<GoogleButton />
|
|
||||||
</div>
|
|
||||||
</ModalContent>
|
</ModalContent>
|
||||||
</Modal>
|
</Modal>
|
||||||
|
|
||||||
|
@ -75,18 +70,4 @@
|
||||||
.login-buttons :global(>*:not(:last-child)) {
|
.login-buttons :global(>*:not(:last-child)) {
|
||||||
margin-right: var(--spacing-xl);
|
margin-right: var(--spacing-xl);
|
||||||
}
|
}
|
||||||
.or-divide {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.or-label {
|
|
||||||
position: absolute;
|
|
||||||
top: calc(50% - 2px);
|
|
||||||
left: 50%;
|
|
||||||
transform: translateX(-50%) translateY(-50%);
|
|
||||||
background-color: var(--background);
|
|
||||||
padding: 0 var(--spacing-xl);
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: var(--font-size-s);
|
|
||||||
color: var(--spectrum-global-color-gray-600);
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue