From ea151aa4d1dee45229cc76100b5c1dd46778cf0c Mon Sep 17 00:00:00 2001 From: Cipher Vance Date: Wed, 21 Jan 2026 07:48:59 -0600 Subject: [PATCH] redesing the navbar --- src/components/ModernNavbar.vue | 1091 ++++++++++++++---------------- src/components/UserDashboard.vue | 8 + 2 files changed, 521 insertions(+), 578 deletions(-) diff --git a/src/components/ModernNavbar.vue b/src/components/ModernNavbar.vue index 4534954..5a11b1c 100644 --- a/src/components/ModernNavbar.vue +++ b/src/components/ModernNavbar.vue @@ -1,189 +1,180 @@ \ No newline at end of file diff --git a/src/components/UserDashboard.vue b/src/components/UserDashboard.vue index 9b6b06a..68d9f65 100644 --- a/src/components/UserDashboard.vue +++ b/src/components/UserDashboard.vue @@ -412,6 +412,14 @@ function formatNextWorkoutTime(workout) { .dashboard-container { min-height: 100vh; 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 {