Fix: remove the 16px empty strip beside the collapsed sidebar

The collapsed sidebar wrapper was hard-coded to 64px while the sidebar itself is w-12 (48px), leaving a 16px empty strip on its right edge. Match the wrapper to the sidebar's own width.
This commit is contained in:
dealerweb
2026-06-03 20:12:51 +02:00
committed by Linus Rath
parent 6f193e0c24
commit 60c7bd713e
+1 -1
View File
@@ -2466,7 +2466,7 @@ export default function Home() {
),
inlineApp && "hidden"
)}
style={!isMobile && !isTablet ? { width: sidebarCollapsed ? 64 : sidebarWidth } : undefined}
style={!isMobile && !isTablet ? { width: sidebarCollapsed ? 48 : sidebarWidth } : undefined}
>
<ErrorBoundary fallback={SidebarErrorFallback}>
<Sidebar