latex-ub/services/web/frontend/stylesheets/components/stepper.less
2025-05-05 12:24:05 +00:00

18 lines
254 B
Text

.stepper {
display: flex;
gap: 12px;
width: 100%;
height: 6px;
.step {
width: 100%;
border-radius: 6px;
background: @neutral-20;
}
.step.completed {
background: @green;
}
.step.active {
background: @green-20;
}
}