forked from CoreBunch/Instatic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdminPreAuthForm.module.css
More file actions
60 lines (53 loc) · 1.09 KB
/
Copy pathAdminPreAuthForm.module.css
File metadata and controls
60 lines (53 loc) · 1.09 KB
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
50
51
52
53
54
55
56
57
58
59
60
.brandRow {
display: flex;
align-items: center;
gap: var(--space-m);
margin-bottom: var(--space-4xl);
color: var(--text-muted);
font-size: var(--text-s);
font-weight: 600;
}
.brandIcon {
display: grid;
width: 28px;
height: 28px;
place-items: center;
border-radius: 6px;
background: var(--overlay-10);
color: var(--text);
}
/* Operator-provided favicon used as the login brand mark. Object-fit cover
so the asset crops cleanly regardless of aspect ratio; the rounded tile
keeps it visually paired with the default brandIcon background. */
.brandFavicon {
width: 28px;
height: 28px;
border-radius: 6px;
object-fit: cover;
flex-shrink: 0;
user-select: none;
}
.form {
display: grid;
gap: var(--space-xl);
}
.field {
display: grid;
gap: var(--space-xs);
color: var(--text-muted);
font-size: var(--text-s);
font-weight: 600;
}
@keyframes instaticAdminSpin {
to {
transform: rotate(360deg);
}
}
.spinIcon {
animation: instaticAdminSpin 0.8s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
.spinIcon {
animation: none;
}
}