You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

27 lines
419 B

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