From da8cbe785f5dcc9210f835a3725c77b3a680c4cf Mon Sep 17 00:00:00 2001 From: nimrodkra Date: Thu, 5 Mar 2026 18:19:39 +0000 Subject: [PATCH] fix(webapp): improve mobile + button positioning with safe area support Use fixed positioning and tailwindcss-safe-area offset for the FooterPlusButton to keep it visible while scrolling and properly spaced above the iOS home indicator bar. Co-Authored-By: Claude Opus 4.6 --- packages/webapp/components/footer/FooterPlusButton.tsx | 2 +- packages/webapp/components/layouts/FooterNavBarLayout.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/webapp/components/footer/FooterPlusButton.tsx b/packages/webapp/components/footer/FooterPlusButton.tsx index 6eb9d816583..bbc393f15fc 100644 --- a/packages/webapp/components/footer/FooterPlusButton.tsx +++ b/packages/webapp/components/footer/FooterPlusButton.tsx @@ -53,7 +53,7 @@ export function FooterPlusButton(): ReactElement { {...props} icon={} variant={ButtonVariant.Primary} - className="absolute bottom-24 right-4 z-1 ml-auto justify-self-center border border-border-subtlest-tertiary" + className="fixed right-4 z-3 border border-border-subtlest-tertiary bottom-safe-offset-16" /> {children} - {showNav &&
} + {showNav &&
} );