-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathStepHeader.module.css
More file actions
38 lines (35 loc) · 966 Bytes
/
StepHeader.module.css
File metadata and controls
38 lines (35 loc) · 966 Bytes
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
.root {
display: flex;
flex-direction: column;
align-self: stretch;
padding: var(--sp-9) var(--sp-12); /* 36px 48px */
gap: var(--sp-7); /* 28px */
:global([data-current='addressBarMode']) & {
padding-top: var(--sp-11); /* 44px */
padding-bottom: var(--sp-11); /* 44px */
}
}
.title {
font-family: var(--font-display);
font-size: var(--sp-6); /* 24px */
font-weight: 700;
line-height: var(--sp-7); /* 28px */
text-align: left;
white-space: pre-line;
color: var(--ds-text-primary);
margin: 0;
text-box-trim: trim-both;
text-box-edge: cap alphabetic;
}
.subtitle {
font-family: var(--font-product);
font-size: calc(18 * var(--px-in-rem));
font-weight: 400;
line-height: calc(22 * var(--px-in-rem));
text-align: left;
white-space: pre-line;
color: var(--ds-text-primary);
margin: 0;
text-box-trim: trim-both;
text-box-edge: cap alphabetic;
}