brf/client/public/components/login_form.module.scss
2026-06-15 14:09:28 +02:00

31 lines
385 B
SCSS

.root {
max-width: 400px;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto;
}
.error,
.input {
grid-column: 1 / 3;
}
.footer {
display: flex;
justify-content: space-between;
align-items: center;
}
.button {
grid-column: 2 / 3;
}
.links {
grid-column: 1 / 3;
justify-self: center;
li:not(:last-child) {
padding-bottom: 4px;
}
}