From deca7674fd462d67364ece91bd48ddea03afd33f Mon Sep 17 00:00:00 2001 From: Manav Shrivastava Date: Mon, 27 Jul 2026 13:57:21 +0530 Subject: [PATCH] Fix control button UI overflow in top bar (#208) Add overflow: hidden to .main-topbar to prevent control button clusters from overflowing when the side panel is open. --- surfaces/gui/src/styles.css | 1 + 1 file changed, 1 insertion(+) diff --git a/surfaces/gui/src/styles.css b/surfaces/gui/src/styles.css index 3e8e3cce..23695f13 100644 --- a/surfaces/gui/src/styles.css +++ b/surfaces/gui/src/styles.css @@ -209,6 +209,7 @@ body { right: 0; height: 48px; display: flex; align-items: center; gap: 12px; padding: 0 14px 0 20px; color: var(--ink); user-select: none; + overflow: hidden; /* clip overflowing button clusters when the side panel is open */ /* Edgeless glass (§22 amendment): no border, translucent tint + blur — invisible over the flat paper at rest, frosts only when the transcript actually scrolls under it. */ background: color-mix(in srgb, var(--paper) 72%, transparent);