From 7d106998befdf3cf6abe1e0418cc01fc5655dda0 Mon Sep 17 00:00:00 2001 From: Mondo Diaz Date: Wed, 28 Jan 2026 16:09:20 +0000 Subject: [PATCH] Add subtle vertical column separators to tables --- frontend/src/pages/TeamDashboardPage.css | 10 ++++++++++ frontend/src/pages/TeamsPage.css | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/frontend/src/pages/TeamDashboardPage.css b/frontend/src/pages/TeamDashboardPage.css index cdd2881..88d2aa1 100644 --- a/frontend/src/pages/TeamDashboardPage.css +++ b/frontend/src/pages/TeamDashboardPage.css @@ -84,6 +84,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); +} + +.projects-table th:last-child { + border-right: none; } .projects-table td { @@ -91,6 +96,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); +} + +.projects-table td:last-child { + border-right: none; } .projects-table tbody tr:last-child td { diff --git a/frontend/src/pages/TeamsPage.css b/frontend/src/pages/TeamsPage.css index a09d070..a081e29 100644 --- a/frontend/src/pages/TeamsPage.css +++ b/frontend/src/pages/TeamsPage.css @@ -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 {