mirror of
https://github.com/mue/mue.git
synced 2026-07-06 08:01:27 +02:00
fix: update lock file
This commit is contained in:
6579
pnpm-lock.yaml
generated
6579
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -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>
|
||||
);
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user