From b4481ee50b3eb0cde34dd6cc5671a27b3a7432e0 Mon Sep 17 00:00:00 2001 From: Matt Lehman Date: Mon, 9 Feb 2026 23:06:45 -0500 Subject: [PATCH] Prevent bottom tab bar from covering chat input --- interview-app/public/index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/interview-app/public/index.html b/interview-app/public/index.html index 46d2a82..f54fdf8 100644 --- a/interview-app/public/index.html +++ b/interview-app/public/index.html @@ -1594,6 +1594,8 @@ min-height: 0; display: none; flex-direction: column; + /* Reserve space for fixed bottom tab bar so it never covers tab content. */ + padding-bottom: calc(56px + env(safe-area-inset-bottom)); } .tab-view { display: none; } .tab-view.active { display: flex; flex-direction: column; flex: 1; min-height: 0; }