diff --git a/frontend/src/assets/theme.css b/frontend/src/assets/theme.css index c9b12ff..82f1470 100644 --- a/frontend/src/assets/theme.css +++ b/frontend/src/assets/theme.css @@ -35,10 +35,10 @@ /* Sidebar */ --sidebar-width: 260px; --sidebar-collapsed-width: 68px; - --sidebar-bg: #1a1a2e; - --sidebar-text: #a1a1b5; - --sidebar-text-active: #ffffff; - --sidebar-hover-bg: rgba(255, 255, 255, 0.08); + --sidebar-bg: #ffffff; + --sidebar-text: #6b7280; + --sidebar-text-active: #1a1a2e; + --sidebar-hover-bg: #f3f4f6; /* Spacing */ --radius-sm: 6px; @@ -66,4 +66,10 @@ --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2); --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3); --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4); + + /* Sidebar - Dark theme */ + --sidebar-bg: #1a1a2e; + --sidebar-text: #a1a1b5; + --sidebar-text-active: #ffffff; + --sidebar-hover-bg: rgba(255, 255, 255, 0.08); } diff --git a/frontend/src/components/AppSidebar.vue b/frontend/src/components/AppSidebar.vue index 5f72d0e..15cfd7d 100644 --- a/frontend/src/components/AppSidebar.vue +++ b/frontend/src/components/AppSidebar.vue @@ -148,6 +148,16 @@ const handleLogout = () => { width: var(--sidebar-collapsed-width); } +.sidebar.collapsed .footer-actions { + flex-direction: column; + gap: 0.5rem; +} + +.sidebar.collapsed .footer-btn { + width: 100%; + justify-content: center; +} + /* Header */ .sidebar-header { display: flex; diff --git a/frontend/src/components/DashboardCalendar.vue b/frontend/src/components/DashboardCalendar.vue index c068a0d..a165d23 100644 --- a/frontend/src/components/DashboardCalendar.vue +++ b/frontend/src/components/DashboardCalendar.vue @@ -2,17 +2,17 @@