From f911243bf06bed9e7973906d81818e31ab0b44c1 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Thu, 29 Jan 2026 14:52:56 +0100 Subject: [PATCH] fix(matrix): use padding-bottom for bottom navigation The PillNavigation is positioned at the bottom, so the content area needs padding-bottom instead of padding-top. Co-Authored-By: Claude Opus 4.5 --- apps/matrix/apps/web/src/routes/(app)/+layout.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/matrix/apps/web/src/routes/(app)/+layout.svelte b/apps/matrix/apps/web/src/routes/(app)/+layout.svelte index 41517c8c5..8b50f9f6b 100644 --- a/apps/matrix/apps/web/src/routes/(app)/+layout.svelte +++ b/apps/matrix/apps/web/src/routes/(app)/+layout.svelte @@ -281,9 +281,9 @@ transition: all 300ms ease; } - /* Floating nav mode - add top padding for fixed nav */ + /* Floating nav mode - add bottom padding for bottom nav */ .main-content.floating-mode { - padding-top: 80px; + padding-bottom: 80px; } /* Sidebar mode - add left padding for sidebar nav */