diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-02-21 10:59:08 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-21 10:59:08 -0800 |
commit | 5d30111b7832377637d0f3ebb533610375e4edb9 (patch) | |
tree | 3c8682368576475fae3b8212fc8c8828bea2205e /src/components/Menu/index.tsx | |
parent | 798bf4782730d2d900ee30630bf065e2551bf089 (diff) | |
download | voidsky-5d30111b7832377637d0f3ebb533610375e4edb9.tar.zst |
Get sheet padding working consistently (#7798)
* tweak height/padding of iOS * tweak android ratio calculation * add a bit of extra padding to full height iOS to account for the bit below the safe area
Diffstat (limited to 'src/components/Menu/index.tsx')
-rw-r--r-- | src/components/Menu/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Menu/index.tsx b/src/components/Menu/index.tsx index 9c970b051..06b9e7e55 100644 --- a/src/components/Menu/index.tsx +++ b/src/components/Menu/index.tsx @@ -100,7 +100,7 @@ export function Outer({ <Dialog.Handle /> {/* Re-wrap with context since Dialogs are portal-ed to root */} <Context.Provider value={context}> - <Dialog.ScrollableInner label={_(msg`Menu`)} style={[a.py_sm]}> + <Dialog.ScrollableInner label={_(msg`Menu`)}> <View style={[a.gap_lg]}> {children} {isNative && showCancel && <Cancel />} |