24 lines
382 B
SCSS
24 lines
382 B
SCSS
.bg-empty {
|
|
background-color: #9C9BC0;
|
|
}
|
|
.bg-green {
|
|
background-color: #7AAB5F;
|
|
}
|
|
.bg-murky {
|
|
background-color: #D2E3CA;
|
|
}
|
|
.bg-unknown {
|
|
background-color: #F7CBA1;
|
|
}
|
|
.summary-card {
|
|
transition: transform 0.2s;
|
|
}
|
|
.summary-card:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
.status-badge {
|
|
font-size: 0.85rem;
|
|
}
|
|
tr.has-error {
|
|
background-color: rgba(255, 193, 7, 0.15) !important;
|
|
}
|