31 lines
385 B
SCSS
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;
|
|
}
|
|
}
|