File tree 2 files changed +7
-2
lines changed
packages/vue/src/steps/src/mobile-first
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 74
74
'opacity-0': index === 0 && state.startIndex === 0
75
75
},
76
76
{ 'sm:hidden sm:min-w-[theme(spacing.6)] sm:ml-4': !vertical },
77
- { 'border-color-brand': ['done', 'doing'].includes(node[statusField]) }
77
+ {
78
+ 'border-color-brand':
79
+ data[index - 1] &&
80
+ data[index - 1][statusField] === 'done' &&
81
+ ['done', 'disabled'].includes(node[statusField])
82
+ }
78
83
)
79
84
"
80
85
></div >
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export const classes = {
11
11
'icon-large' : 'w-8 h-8 text-base' ,
12
12
'icon-error' : 'text-color-error bg-color-bg-1' ,
13
13
'icon-doing' : 'text-color-brand bg-color-info-primary-subtler' ,
14
- 'icon-done' : 'text-color-brand bg-color-info-primary-subtler ' ,
14
+ 'icon-done' : 'text-color-brand bg-color-bg-1 ' ,
15
15
'icon-disabled' : 'bg-color-bg-3 text-color-border' ,
16
16
'icon-error-active' : 'bg-color-error-subtler border-color-error' ,
17
17
'icon-doing-active' : 'bg-color-brand border-color-brand text-color-text-inverse' ,
You can’t perform that action at this time.
0 commit comments