ghostfolio/apps/client/src/app/components/rule/rule.component.scss
2021-04-13 21:53:58 +02:00

27 lines
364 B
SCSS

:host {
display: block;
.icon-container {
border-radius: 0.25rem;
height: 3rem;
&.okay {
background-color: var(--success);
}
&.warn {
background-color: var(--warning);
}
}
.evaluation {
line-height: 1.2;
}
}
:host-context(.is-dark-theme) {
.icon-container {
color: rgba(var(--dark-primary-text));
}
}