Files
element-call/src/auth/LoginPage.module.css
T
Robin 8b3c94b120 Make the links on the log in page visually consistent
Timo was totally right in his previous review of my typography component work that these didn't have the right styling. I just didn't notice!
2024-09-19 12:09:14 -04:00

70 lines
1.1 KiB
CSS

/*
Copyright 2022-2024 New Vector Ltd.
SPDX-License-Identifier: AGPL-3.0-only
Please see LICENSE in the repository root for full details.
*/
.logo {
max-width: 300px;
margin: 80px 0;
height: auto;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
padding: 0 20px;
height: 100%;
}
.content {
display: flex;
flex-direction: column;
max-width: 400px;
width: 100%;
min-height: 100%;
}
.formContainer {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex: 1;
width: 100%;
}
.formContainer h2,
.formContainer h4 {
margin-top: 0;
}
.formContainer h4 {
font-weight: normal;
font-size: var(--font-size-subtitle);
margin-bottom: 0;
}
.formContainer form {
width: 100%;
margin-top: 32px;
}
.formContainer button {
height: 48px;
width: 100%;
font-size: var(--font-size-body);
font-weight: 600;
}
.authLinks {
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
margin-bottom: 100px;
font-size: var(--font-size-body);
}