forked from jbx-protocol/juice-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstep.scss
48 lines (42 loc) · 956 Bytes
/
step.scss
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
.ant-steps-item-finish {
.ant-steps-item-icon {
.ant-steps-icon-dot {
background: var(--background-action-primary) !important;
}
}
.ant-steps-item-container {
.ant-steps-item-tail::after {
background: var(--background-action-primary);
}
}
}
.ant-steps-item-wait {
.ant-steps-item-icon {
.ant-steps-icon-dot {
background: var(--stroke-secondary) !important;
}
}
.ant-steps-item-container {
.ant-steps-item-tail::after {
background: var(--stroke-tertiary);
}
}
}
.ant-steps-item-process {
.ant-steps-item-icon {
.ant-steps-icon-dot {
background: var(--background-action-primary) !important;
}
}
.ant-steps-item-container {
.ant-steps-item-tail::after {
background: var(--stroke-tertiary);
}
}
}
.ant-steps-item-process
> .ant-steps-item-container
> .ant-steps-item-content
> .ant-steps-item-title {
color: var(--text-action-primary);
}