From 2c74a4b3ae23cabcff7c4ec27b8f2dce2ec0690f Mon Sep 17 00:00:00 2001 From: Alexandro Uc Santos Date: Sat, 2 Dec 2023 19:38:07 -0600 Subject: [PATCH] fix: sidebar --- src/components/NavBar.vue | 9 ++++++++- src/components/Sidebar.vue | 21 ++++++++++++++++----- src/layouts/AdminLayout.vue | 25 +++++++++++++++++++------ 3 files changed, 43 insertions(+), 12 deletions(-) diff --git a/src/components/NavBar.vue b/src/components/NavBar.vue index d7185de..5ba71f4 100644 --- a/src/components/NavBar.vue +++ b/src/components/NavBar.vue @@ -6,12 +6,13 @@ $(document).ready(function() { $('#sidebarCollapse').on('click', function () { $('#sidebar').toggleClass('active'); + $('#custom-navbar').toggleClass('active'); }); });