File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/content/Components/Stepper Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 20
20
>
21
21
<svg
22
22
v-if =" getStepStatus(index + 1) === 'complete'"
23
- class =" h-4 w-4 text-white stroke-white "
23
+ class =" h-4 w-4 text-black stroke-black "
24
24
fill =" none"
25
25
stroke =" currentColor"
26
26
:stroke-width =" 2"
39
39
"
40
40
/>
41
41
</svg >
42
- <div v-else-if =" getStepStatus(index + 1) === 'active'" class =" h-3 w-3 rounded-full bg-white " />
42
+ <div v-else-if =" getStepStatus(index + 1) === 'active'" class =" h-3 w-3 rounded-full bg-black " />
43
43
<span v-else class =" text-sm" >{{ index + 1 }}</span >
44
44
</div >
45
45
114
114
<button
115
115
@click =" isLastStep ? handleComplete() : handleNext()"
116
116
:disabled =" nextButtonProps?.disabled"
117
- :class =" `border-none bg-[#27ff64] transition-all duration-[350ms] flex items-center justify-center rounded-full text-white font-medium tracking-tight px-3.5 py-1.5 cursor-pointer hover:bg-[#22e55c] disabled:opacity-50 disabled:cursor-not-allowed`"
117
+ :class =" `border-none bg-[#27ff64] transition-all duration-[350ms] flex items-center justify-center rounded-full text-black font-medium tracking-tight px-3.5 py-1.5 cursor-pointer hover:bg-[#22e55c] disabled:opacity-50 disabled:cursor-not-allowed`"
118
118
>
119
119
{{ isLastStep ? 'Complete' : nextButtonText }}
120
120
</button >
You can’t perform that action at this time.
0 commit comments