From 5ce136cbe7b78ae36803cd909b553fd9b38ceac5 Mon Sep 17 00:00:00 2001 From: saltand Date: Tue, 25 Aug 2026 17:00:42 +0800 Subject: [PATCH] fix(desktop): clip sidebar overflow during expansion --- apps/desktop/src/renderer/styles/shell-layout.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/desktop/src/renderer/styles/shell-layout.css b/apps/desktop/src/renderer/styles/shell-layout.css index 9b95d972dc..b555347b19 100644 --- a/apps/desktop/src/renderer/styles/shell-layout.css +++ b/apps/desktop/src/renderer/styles/shell-layout.css @@ -179,6 +179,8 @@ e2e/sidebar-geometry.spec.ts locks. */ height: 100%; width: var(--maka-sidenav-width); + /* Clip the expanded content while the sidebar width catches up. */ + overflow: clip; transition: width var(--duration-large) var(--ease-out-strong); }