feat(HAI-001): add CSS for status badges and pulse animation

This commit is contained in:
Dustin Byrne
2026-03-25 18:52:02 -04:00
parent a4b9cc2686
commit da7a60cdaa

View File

@@ -193,6 +193,27 @@ html, body {
color: var(--text-dim);
}
.card-status-badge {
display: inline-flex;
align-items: center;
font-size: 10px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
padding: 2px 8px;
border-radius: 10px;
margin-bottom: 4px;
}
.card-status-badge.pulsing {
animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.card-dep-badge {
display: inline-flex;
align-items: center;