stepper.less 254 B

123456789101112131415161718
  1. .stepper {
  2. display: flex;
  3. gap: 12px;
  4. width: 100%;
  5. height: 6px;
  6. .step {
  7. width: 100%;
  8. border-radius: 6px;
  9. background: @neutral-20;
  10. }
  11. .step.completed {
  12. background: @green;
  13. }
  14. .step.active {
  15. background: @green-20;
  16. }
  17. }