From 128b13c679ec48b8b8fcb92e80fa7dff6e0ee85a Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Fri, 20 Mar 2026 10:43:23 +0100 Subject: [PATCH] style(App): add padding adjustment for collapsed sidebar - Introduced a new CSS rule to add top padding to the sidebar content when the sidebar is collapsed, improving layout consistency and visual appearance. --- frontend/src/App.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/App.vue b/frontend/src/App.vue index a200fba2..24fca662 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -1073,6 +1073,10 @@ export default { .sidebar-content { padding: 0.5rem; } + + .sidebar.sidebar-collapsed .sidebar-content { + padding-top: 3rem; + } .main-content { margin-left: 60px;