From 60c7bd713ee3179cec8a69997d9200d7a9cbc941 Mon Sep 17 00:00:00 2001 From: dealerweb Date: Wed, 3 Jun 2026 16:45:52 +0200 Subject: [PATCH] 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. --- app/(main)/[locale]/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/(main)/[locale]/page.tsx b/app/(main)/[locale]/page.tsx index c411c041..dd2bfa40 100644 --- a/app/(main)/[locale]/page.tsx +++ b/app/(main)/[locale]/page.tsx @@ -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} >