mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 14:00:05 +02:00

[web] Migrate onboarding collection data page to bootstrap 5 GitOrigin-RevId: ebf91db34ff11313c262bf57ad45e70d30857cd6
20 lines
290 B
SCSS
20 lines
290 B
SCSS
.stepper {
|
|
display: flex;
|
|
gap: var(--spacing-05);
|
|
width: 100%;
|
|
height: 6px;
|
|
|
|
.step {
|
|
width: 100%;
|
|
border-radius: 6px;
|
|
background: var(--neutral-20);
|
|
}
|
|
|
|
.step.completed {
|
|
background: var(--green-50);
|
|
}
|
|
|
|
.step.active {
|
|
background: var(--green-20);
|
|
}
|
|
}
|