From a50b268d354cf5e0778736c67e28fa2c4be05fce Mon Sep 17 00:00:00 2001 From: Thomas Hallock Date: Sat, 6 Dec 2025 19:20:47 -0600 Subject: [PATCH] fix(practice): add 80px top padding to account for app nav height MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Push main content down below the fixed app navigation bar. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- apps/web/src/app/practice/page.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/web/src/app/practice/page.tsx b/apps/web/src/app/practice/page.tsx index 57072982..ef5aaad0 100644 --- a/apps/web/src/app/practice/page.tsx +++ b/apps/web/src/app/practice/page.tsx @@ -408,7 +408,10 @@ export default function PracticePage() { className={css({ minHeight: '100vh', backgroundColor: isDark ? 'gray.900' : 'gray.50', - padding: viewState === 'practicing' ? '0' : '2rem', + paddingTop: viewState === 'practicing' ? '80px' : 'calc(80px + 2rem)', + paddingLeft: viewState === 'practicing' ? '0' : '2rem', + paddingRight: viewState === 'practicing' ? '0' : '2rem', + paddingBottom: viewState === 'practicing' ? '0' : '2rem', })} >