redesing the navbar

This commit is contained in:
Cipher Vance
2026-01-21 07:48:59 -06:00
parent 41614036ba
commit ea151aa4d1
2 changed files with 521 additions and 578 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -412,6 +412,14 @@ function formatNextWorkoutTime(workout) {
.dashboard-container { .dashboard-container {
min-height: 100vh; min-height: 100vh;
background: var(--color-background); background: var(--color-background);
margin-left: 280px; /* Account for sidebar width */
transition: margin-left var(--transition-base);
}
@media (max-width: 768px) {
.dashboard-container {
margin-left: 0;
}
} }
.dashboard-content { .dashboard-content {