feat(clients): adds group affiliation to clients table
Build & Deploy / build (push) Successful in 2m18s

This commit is contained in:
2026-07-17 19:47:32 +02:00
parent 6b18cbca0e
commit a01bbd368a
4 changed files with 93 additions and 4 deletions
+12 -1
View File
@@ -281,7 +281,7 @@ textarea {
table {
width: 100%;
border-collapse: collapse;
min-width: 760px;
min-width: 900px;
}
th,
@@ -359,6 +359,17 @@ tr:last-child td {
color: var(--amber);
}
.badge[href] {
text-decoration: none;
cursor: pointer;
}
.badge[href]:hover {
border-color: var(--blue);
background: #edf4ff;
color: var(--blue);
}
.metric-grid {
display: grid;
grid-template-columns: repeat(4, minmax(120px, 1fr));