ng-implementation/my-workspace/projects/sae-lib/stepper/stepper.scss
2025-10-13 12:47:50 +02:00

17 lines
243 B
SCSS

:host {
.step {
border-radius: 1px solid grey;
padding: 1rem;
background: white;
&.is-active {
color: black;
border-color: blue;
}
&.is-inactive {
background: grey;
color: white;
}
}
}