blob: e274b5e249700c3c6cd725e1193c29f4fab445fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
.centeredForm {
top: 50%;
transform: translateY(-50%);
margin: 0 auto;
}
.centeredForm .input {
margin-bottom: var(--spacing-medium);
}
.centeredForm .input:nth-last-of-type(2) {
margin-bottom: var(--spacing-large);
}
.logout .sidebyside {
width: fit-content;
}
.logout .sidebyside .button {
margin: 0;
}
|