18 lines
262 B
SCSS
18 lines
262 B
SCSS
:host {
|
|
display: block;
|
|
|
|
.icon-container {
|
|
background-color: rgba(var(--palette-foreground-base), 0.02);
|
|
border-radius: 0.25rem;
|
|
height: 2rem;
|
|
|
|
&.okay {
|
|
color: var(--success);
|
|
}
|
|
|
|
&.warn {
|
|
color: var(--danger);
|
|
}
|
|
}
|
|
}
|