ng-implementation/my-workspace/projects/sae-lib/stepper/stepper.scss

36 lines
526 B
SCSS
Raw Normal View History

2025-10-13 12:47:50 +02:00
:host {
2025-10-13 13:00:16 +02:00
.separator {
width: 100px;
background: grey;
height: 4px;
border-radius: 3px;
&.is-active {
background: blue;
}
}
2025-10-13 12:47:50 +02:00
.step {
2025-10-13 13:00:16 +02:00
border-radius: 100px;
border: solid 2px grey;
padding: 1rem 1.5rem;
2025-10-13 12:47:50 +02:00
background: white;
2025-10-13 13:00:16 +02:00
width: 1.5rem;
float: left;
display: flex;
margin-right: 1rem;
2025-10-13 12:47:50 +02:00
&.is-active {
color: black;
border-color: blue;
}
&.is-inactive {
background: grey;
2025-10-13 13:00:16 +02:00
border-color: black;
2025-10-13 12:47:50 +02:00
color: white;
}
}
}