From 7d3bc24e13e44a33eef55ee241bbb30e0c3f37fd Mon Sep 17 00:00:00 2001 From: Edwin Noorlander Date: Wed, 19 Nov 2025 15:10:14 +0100 Subject: [PATCH] Fix sidebar collapse functionality - Restored .sidebar.collapsed CSS class that was accidentally removed - Sidebar toggle now works correctly with fixed header/footer layout --- public/templates/layout.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public/templates/layout.html b/public/templates/layout.html index 755bd3e..3cd692f 100644 --- a/public/templates/layout.html +++ b/public/templates/layout.html @@ -54,6 +54,10 @@ height: 100%; } + .sidebar.collapsed { + margin-left: -250px; + } + .main-content { flex: 1; overflow-y: auto;