From a2bc6ad6084ccee3864a047501cd04ef53686b72 Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 25 Dec 2025 17:37:56 -0500 Subject: [PATCH] Tighten topbar dock padding --- src/styles/topbar.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/styles/topbar.css b/src/styles/topbar.css index 6d7e678..7f52027 100644 --- a/src/styles/topbar.css +++ b/src/styles/topbar.css @@ -459,11 +459,13 @@ body[data-theme="light"] .user-avatar{ /* Make right side look like a clean “glass dock” */ .topbar-right{ - padding: calc(.28rem + 5px) .35rem; + padding: calc(.28rem + 5px) calc(.35rem + 5px); border-radius: 999px; background: rgba(2,6,23,.18); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(10px); + min-height: 44px; + overflow: hidden; } /* User chip used by TopBar.jsx (missing styles before) */