fix: update lock file

This commit is contained in:
alexsparkes 2024-01-26 14:09:10 +00:00
parent a95197a763
commit c3ff63fa91
3 changed files with 6588 additions and 5 deletions

File diff suppressed because it is too large Load Diff

View File

@ -11,7 +11,11 @@ function ProgressBar({ count, currentTab, switchTab }) {
className = 'step active'; className = 'step active';
} }
return <div className={className} key={index} onClick={() => switchTab(index)} />; return (
<div className={className} key={index} onClick={() => switchTab(index)}>
<span>{index + 1}</span>
</div>
);
})} })}
</div> </div>
); );

View File

@ -67,13 +67,11 @@
.step { .step {
display: inline-block; display: inline-block;
width: 50px; border-bottom: 2px solid grey;
background: #8395a7; padding: 10px 20px 10px 20px;
height: 10px;
margin: 5px; margin: 5px;
transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
cursor: pointer; cursor: pointer;
border-radius: 15px;
&:hover { &:hover {
background: #7575e5; background: #7575e5;
} }
@ -81,6 +79,8 @@
.active { .active {
background: #5352ed; background: #5352ed;
border-bottom: 2px solid #5352ed;
border-radius: 10px;
} }
} }