forked from CoreBunch/Instatic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStepUpDialog.module.css
More file actions
69 lines (61 loc) · 1.21 KB
/
Copy pathStepUpDialog.module.css
File metadata and controls
69 lines (61 loc) · 1.21 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
61
62
63
64
65
66
67
68
69
.backdrop {
position: fixed;
inset: 0;
background: var(--scrim-60);
z-index: 200;
display: grid;
place-items: center;
}
.dialog {
width: min(420px, calc(100vw - 32px));
max-width: 100%;
background: var(--bg-surface);
border: 1px solid var(--border);
border-radius: var(--panel-radius);
box-shadow: 0 12px 48px var(--scrim-50);
color: var(--text);
padding: var(--space-4xl);
display: grid;
gap: var(--space-xl);
}
.title {
margin: 0;
color: var(--text-bright);
font-size: var(--text-xl);
font-weight: 800;
line-height: 1.2;
}
.body {
margin: 0;
color: var(--text-subtle);
font-size: var(--text-s);
line-height: 1.5;
}
.form {
display: grid;
gap: var(--space-l);
}
.field {
display: grid;
gap: var(--space-xs);
}
.label {
color: var(--text-subtle);
font-size: var(--text-xs);
font-weight: 700;
letter-spacing: 0.02em;
text-transform: uppercase;
}
.error {
margin: 0;
color: var(--danger);
font-size: var(--text-s);
font-weight: 700;
line-height: 1.45;
}
.actions {
display: flex;
justify-content: flex-end;
gap: var(--space-s);
margin-top: var(--space-3xs);
}