From 81fb92284bf5bbd14f9d8bf38add2bf468124e81 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Thu, 12 Mar 2026 19:39:24 -0700 Subject: [PATCH] fix(shell): move subnav/tabbar below tab row (top: 128px) The subnav and tabbar were sticking at top: 92px which overlapped with the tab row (header 56px + tab row ~36px = 92px). Bumped to 128px so they sit cleanly below the tab row. Co-Authored-By: Claude Opus 4.6 --- server/shell.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/shell.ts b/server/shell.ts index 38ec8df..75517ab 100644 --- a/server/shell.ts +++ b/server/shell.ts @@ -1327,7 +1327,7 @@ const SUBNAV_CSS = ` background: var(--rs-bg-surface); scrollbar-width: none; position: sticky; - top: 92px; + top: 128px; z-index: 100; margin-bottom: 4px; } @@ -1416,7 +1416,7 @@ const TABBAR_CSS = ` background: var(--rs-bg-surface); scrollbar-width: none; position: sticky; - top: 92px; + top: 128px; z-index: 100; } .rapp-tabbar::-webkit-scrollbar { display: none; }