17 lines
243 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|