Skip to content

Commit 1b27e26

Browse files
Fix SafeAreaProps for Nav
1 parent 208276d commit 1b27e26

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/app/components/TopNav.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ export function TopNav({
151151
<Header w="100%" $lg={{ py: '$3' }}>
152152
<Container
153153
safeAreaProps={{
154-
edges: ['top', 'left', 'right'],
154+
edges: { bottom: 'off' },
155155
}}
156156
$gtLg={{ jc: 'flex-start', pb: '$2', ai: 'flex-start' }}
157157
ai="center"

packages/app/features/send/components/SendTopNav.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ export function SendTopNav() {
3131
const isOnSelectRecipient = !(path.includes('/confirm') || sendParams.recipient)
3232

3333
return (
34-
<Header w="100%" $lg={{ pt: '$3' }}>
34+
<Header w="100%" $lg={{ py: '$3' }}>
3535
<Container
3636
$gtLg={{ jc: 'flex-start', pb: '$2', ai: 'flex-start' }}
3737
ai="center"
3838
jc="space-between"
39-
safeAreaProps={{ edges: ['top'] }}
39+
safeAreaProps={{ edges: { bottom: 'off' } }}
4040
>
4141
<XStack ai="center" $lg={{ f: 1 }} w="20%" $gtLg={{ display: 'none' }}>
4242
{!isOnSelectRecipient && (

0 commit comments

Comments
 (0)