blob: 9755ad382e4faa084813b34250ee9cec7455aacc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
body {
display: flex;
height: 100vh;
align-items: center;
justify-content: center;
}
.setup {
margin: auto;
padding: 2rem;
width: 320px;
display: flex;
flex-direction: column;
align-items: center;
/* debug */
background-color: #1a1a1f;
border-radius: 0.375rem;
& h1 {
font-size: 1.75rem;
}
}
.setup-form {
display: flex;
flex-direction: column;
gap: 1rem;
width: 100%;
& button {
margin: 0;
padding: .75rem .5rem;
justify-content: center;
background-color: var(--accent);
color: #fff;
&:hover {
filter: brightness(1.15);
}
}
}
.form-errors {
display: flex;
flex-direction: column;
gap: 0.5rem;
color: var(--error);
}
|