Add subtle vertical column separators to tables

This commit is contained in:
Mondo Diaz
2026-01-28 16:09:20 +00:00
parent 6198a174c7
commit 7d106998be
2 changed files with 20 additions and 0 deletions

View File

@@ -194,6 +194,11 @@
color: var(--color-text-muted);
background: var(--color-bg-secondary);
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
border-right: 1px solid rgba(0, 0, 0, 0.06);
}
.teams-table th:last-child {
border-right: none;
}
.teams-table td {
@@ -201,6 +206,11 @@
font-size: 0.875rem;
vertical-align: middle;
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
border-right: 1px solid rgba(0, 0, 0, 0.06);
}
.teams-table td:last-child {
border-right: none;
}
.teams-table tbody tr:last-child td {