mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
19 lines
254 B
Text
19 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;
|
||
|
}
|
||
|
}
|