summaryrefslogtreecommitdiff
path: root/src/components/ProgressBar.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ProgressBar.js')
-rw-r--r--src/components/ProgressBar.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ProgressBar.js b/src/components/ProgressBar.js
index 8a2df0a4..0adedcdf 100644
--- a/src/components/ProgressBar.js
+++ b/src/components/ProgressBar.js
@@ -6,7 +6,7 @@ const ProgressBar = ({ current, labels }) => {
{labels.map((label, index) => (
<Fragment key={index}>
<div className={"flex gap-x-2 items-center " + (index < current ? 'text-gray_r-12' : 'text-gray_r-11')}>
- <div className={"leading-none p-2 rounded-full w-7 text-center text-caption-2 " + (index < current ? 'bg-yellow_r-9' : 'bg-gray_r-6')}>
+ <div className={"leading-none p-2 rounded-full w-7 text-center text-caption-2 " + (index < current ? 'bg-yellow_r-9' : 'bg-gray_r-5')}>
{ index + 1 }
</div>
<p className="font-medium text-caption-2">{ label }</p>