From 39da1cd465953d2c7dcc0d111f540e306cdb0108 Mon Sep 17 00:00:00 2001 From: Hailey Date: Fri, 15 Mar 2024 09:30:19 -0700 Subject: [PATCH] add padding to the `ScrollableInner` --- src/components/Dialog/index.tsx | 4 +++- src/components/Prompt.tsx | 2 -- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Dialog/index.tsx b/src/components/Dialog/index.tsx index 5f6edeac..0da2919c 100644 --- a/src/components/Dialog/index.tsx +++ b/src/components/Dialog/index.tsx @@ -23,6 +23,7 @@ import { DialogInnerProps, } from '#/components/Dialog/types' import {Context} from '#/components/Dialog/context' +import {isNative} from 'platform/detection' export {useDialogControl, useDialogContext} from '#/components/Dialog/context' export * from '#/components/Dialog/types' @@ -221,7 +222,8 @@ export function ScrollableInner({children, style}: DialogInnerProps) { borderTopRightRadius: 40, }, flatten(style), - ]}> + ]} + contentContainerStyle={isNative ? a.pb_4xl : undefined}> {children} diff --git a/src/components/Prompt.tsx b/src/components/Prompt.tsx index 1b9348d9..b81b2070 100644 --- a/src/components/Prompt.tsx +++ b/src/components/Prompt.tsx @@ -3,7 +3,6 @@ import {View} from 'react-native' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {isNative} from '#/platform/detection' import {useTheme, atoms as a, useBreakpoints} from '#/alf' import {Text} from '#/components/Typography' import {Button, ButtonColor, ButtonText} from '#/components/Button' @@ -86,7 +85,6 @@ export function Actions({children}: React.PropsWithChildren<{}>) { gtMobile ? [a.flex_row, a.flex_row_reverse, a.justify_start] : [a.flex_col], - isNative && [a.pb_4xl], ]}> {children}