From 4a159031650bb1564a935d671443cee06f030c2b Mon Sep 17 00:00:00 2001 From: Nicholas-Xiong <2482929840@qq.com> Date: Thu, 28 May 2026 11:44:09 +0800 Subject: [PATCH] fix: increase subtab-pill gap to prevent active tab overlap (#3134) Increase gap from 2px to 4px in .subtab-pill to prevent the active tab's box-shadow from visually overlapping adjacent tabs. The previous 2px gap was insufficient for the shadow to render cleanly between tabs, causing the Style tab to obscure neighboring Content/Attributes/HTML tabs. Closes #2904 --- apps/web/src/styles/workspace/drawer.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/styles/workspace/drawer.css b/apps/web/src/styles/workspace/drawer.css index d4fa43ad6..261f4c596 100644 --- a/apps/web/src/styles/workspace/drawer.css +++ b/apps/web/src/styles/workspace/drawer.css @@ -393,7 +393,7 @@ background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius); - gap: 2px; + gap: 4px; max-width: 100%; overflow-x: auto; scrollbar-width: none;