feat(monitor-webui): make stats cards interactive filters

- Add click event listeners to stats cards to filter issue list
- Add hover effects and cursor pointer to stats cards
- Update filter logic to sync with stats card clicks
This commit is contained in:
matt wilkie
2025-11-21 14:24:14 -07:00
parent 185ed2e93c
commit 5bcad8ab45
3 changed files with 37 additions and 4 deletions

View File

@@ -107,6 +107,13 @@ h1, h2, h3, h4, h5, h6 {
padding: 1rem;
background: #f9f9fa;
border-radius: 6px;
cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s;
}
.stat-item:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.stat-value {