From effe6d23906435eda08d59af3a67ce708b6b54cf Mon Sep 17 00:00:00 2001 From: Codex Agent Date: Tue, 3 Feb 2026 21:58:10 +0100 Subject: [PATCH] Adjust guest v2 fab sizing --- resources/js/guest-v2/components/AppShell.tsx | 14 ++++++-------- .../guest-v2/components/FloatingActionButton.tsx | 6 +++--- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/resources/js/guest-v2/components/AppShell.tsx b/resources/js/guest-v2/components/AppShell.tsx index 9f63020e..85e0ada7 100644 --- a/resources/js/guest-v2/components/AppShell.tsx +++ b/resources/js/guest-v2/components/AppShell.tsx @@ -133,7 +133,7 @@ export default function AppShell({ children }: AppShellProps) { {showFab ? ( isUploadRoute ? ( ) : ( ) diff --git a/resources/js/guest-v2/components/FloatingActionButton.tsx b/resources/js/guest-v2/components/FloatingActionButton.tsx index 122eca22..30af8bd4 100644 --- a/resources/js/guest-v2/components/FloatingActionButton.tsx +++ b/resources/js/guest-v2/components/FloatingActionButton.tsx @@ -42,8 +42,8 @@ export default function FloatingActionButton({ onPress, onLongPress, hidden = fa bottom={inline ? undefined : 20} left={inline ? undefined : '50%'} zIndex={1100} - width={68} - height={68} + width={76} + height={76} borderRadius={999} backgroundColor="$primary" borderWidth={0} @@ -62,7 +62,7 @@ export default function FloatingActionButton({ onPress, onLongPress, hidden = fa : '0 18px 32px rgba(15, 23, 42, 0.2), 0 0 0 8px rgba(255, 255, 255, 0.7)', }} > - + ); }