feat(lite/signin): smaller logo and few tweaks (#6381)

This commit is contained in:
Pierre Donias 2022-08-30 09:05:57 +02:00 committed by Julien Fontanet
parent f36be0d5e0
commit 9c9c656620
2 changed files with 13 additions and 4 deletions

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -41,17 +41,20 @@ async function handleSubmit() {
align-items: center; align-items: center;
flex: 1; flex: 1;
justify-content: center; justify-content: center;
height: 100vh; min-height: 100vh;
max-width: 100vw;
background-color: var(--background-color-primary); background-color: var(--background-color-primary);
} }
form { form {
display: flex; display: flex;
min-width: 30em;
max-width: 100%;
align-items: center; align-items: center;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
margin: 0 auto; margin: 0 auto;
padding: 0 0 8.5rem 0; padding: 8.5rem;
background-color: var(--background-color-secondary); background-color: var(--background-color-secondary);
} }
@ -63,7 +66,8 @@ h1 {
} }
img { img {
width: 60rem; width: 40rem;
margin-bottom: 5rem;
} }
label { label {
@ -74,10 +78,15 @@ label {
input { input {
width: 45rem; width: 45rem;
max-width: 100%;
margin-bottom: 1rem; margin-bottom: 1rem;
padding: 1rem 1.5rem; padding: 1rem 1.5rem;
border: 1px solid var(--color-blue-scale-400); border: 1px solid var(--color-blue-scale-400);
border-radius: 0.8rem; border-radius: 0.8rem;
background-color: white; background-color: white;
} }
button {
margin-top: 3rem;
}
</style> </style>