From 3d7feab40fca46ce967e60138e9d0c5f8e2c8da9 Mon Sep 17 00:00:00 2001 From: simoleo89 Date: Sun, 14 Jun 2026 21:55:05 +0200 Subject: [PATCH] fix(toolbar): stop clipping pop-ups/boxes at the nav edges Drop overflow-x: clip on .tb-nav-clip so boxes that extend past the nav edge (e.g. the me-menu above the avatar, especially when the bar is collapsed/narrow) are no longer cut off. --- src/components/toolbar/ToolbarView.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/toolbar/ToolbarView.tsx b/src/components/toolbar/ToolbarView.tsx index 7c49cf8..bf86eda 100644 --- a/src/components/toolbar/ToolbarView.tsx +++ b/src/components/toolbar/ToolbarView.tsx @@ -498,9 +498,7 @@ const TOOLBAR_STYLES = ` Negative inset margins on the clip path keep vertical breathing room for the popover even on engines that fall back to 'hidden'. */ .tb-nav-clip { - overflow-x: clip; - overflow-y: visible; - overflow-clip-margin: 0 0 200px 0; + overflow: visible; } .tb-icon {