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';
}
return <div className={className} key={index} onClick={() => switchTab(index)} />;
return (
<div className={className} key={index} onClick={() => switchTab(index)}>
<span>{index + 1}</span>
</div>
);
})}
</div>
);

View File

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