Adjust guest v2 fab sizing
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2026-02-03 21:58:10 +01:00
parent b97f5de101
commit effe6d2390
2 changed files with 9 additions and 11 deletions

View File

@@ -133,7 +133,7 @@ export default function AppShell({ children }: AppShellProps) {
{showFab ? (
isUploadRoute ? (
<Button
size="$5"
size="$6"
circular
position="fixed"
bottom={28}
@@ -142,12 +142,12 @@ export default function AppShell({ children }: AppShellProps) {
backgroundColor={dockBackground}
borderWidth={1}
borderColor={dockBorder}
width={72}
height={72}
width={88}
height={88}
onPress={openCompass}
style={{ boxShadow: dockShadow }}
>
<Menu size={24} color={actionIconColor} />
<Menu size={28} color={actionIconColor} />
</Button>
) : (
<XStack
@@ -180,17 +180,15 @@ export default function AppShell({ children }: AppShellProps) {
inline
/>
<Button
size="$5"
size="$3"
circular
backgroundColor={isDark ? 'rgba(12, 16, 32, 0.75)' : 'rgba(255, 255, 255, 0.9)'}
borderWidth={1}
borderColor={dockBorder}
width={72}
height={72}
onPress={openCompass}
style={{ boxShadow: isDark ? '0 10px 20px rgba(2, 6, 23, 0.45)' : '0 8px 16px rgba(15, 23, 42, 0.14)' }}
>
<Menu size={24} color={actionIconColor} />
<Menu size={16} color={actionIconColor} />
</Button>
</XStack>
)

View File

@@ -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)',
}}
>
<Camera size={26} color="white" />
<Camera size={30} color="white" />
</Button>
);
}