From aa1a72dc62fb225ab9f5edef1a09a12896b4ded4 Mon Sep 17 00:00:00 2001 From: jgor20 <102353650+jgor20@users.noreply.github.com> Date: Sun, 11 Jan 2026 14:58:37 +0000 Subject: [PATCH] refactor(ui): make sidebar width conditional on open state Update class bindings in sidebar to apply width only when sidebar is open, improving responsive behavior and preventing layout issues. --- public/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index ed20cff..7ee6d9d 100644 --- a/public/index.html +++ b/public/index.html @@ -129,8 +129,8 @@ :class="{ 'translate-x-0': sidebarOpen, '-translate-x-full': !sidebarOpen, - 'w-64': true, - 'lg:translate-x-0': true, + 'w-64': sidebarOpen, + 'lg:translate-x-0': sidebarOpen, 'lg:w-64': sidebarOpen, 'sidebar-collapsed': !sidebarOpen }">