Fix table borders, single team nav link, remove dashboard stats

- Use explicit border color (#e2e8f0) for table cell borders
- Navbar shows 'Team' (singular) linking directly to team dashboard when user has only 1 team
- Navbar shows 'Teams' (plural) linking to teams list when user has multiple teams
- Remove project/member counts from team dashboard header
This commit is contained in:
Mondo Diaz
2026-01-28 16:05:02 +00:00
parent 000540727c
commit 184cb8ec00
4 changed files with 34 additions and 45 deletions

View File

@@ -184,6 +184,11 @@
border-collapse: collapse;
}
.teams-table th,
.teams-table td {
border: 1px solid #e2e8f0;
}
.teams-table th {
text-align: left;
padding: 0.75rem 1rem;
@@ -193,26 +198,15 @@
letter-spacing: 0.05em;
color: var(--color-text-muted);
background: var(--color-bg-secondary);
border-bottom: 2px solid var(--color-border);
border-right: 1px solid var(--color-border);
}
.teams-table th:last-child {
border-right: none;
border-bottom-width: 2px;
}
.teams-table td {
padding: 0.75rem 1rem;
font-size: 0.875rem;
border-bottom: 1px solid var(--color-border);
border-right: 1px solid var(--color-border);
vertical-align: middle;
}
.teams-table td:last-child {
border-right: none;
}
.team-row {
cursor: pointer;
transition: background 0.1s ease;