Skip to content

Commit f0d7ea7

Browse files
committed
Fix Stepper Contrast
1 parent 92dce03 commit f0d7ea7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/Components/Stepper/Stepper.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
>
2121
<svg
2222
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"
2424
fill="none"
2525
stroke="currentColor"
2626
:stroke-width="2"
@@ -39,7 +39,7 @@
3939
"
4040
/>
4141
</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" />
4343
<span v-else class="text-sm">{{ index + 1 }}</span>
4444
</div>
4545

@@ -114,7 +114,7 @@
114114
<button
115115
@click="isLastStep ? handleComplete() : handleNext()"
116116
: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`"
118118
>
119119
{{ isLastStep ? 'Complete' : nextButtonText }}
120120
</button>

0 commit comments

Comments
 (0)