From 653240bc056236489e8a7882b7b6f902ed0885c2 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 12 Mar 2024 20:12:45 -0500 Subject: Tweak prompt styles on mobile web (#3193) --- src/components/Prompt.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/components/Prompt.tsx') diff --git a/src/components/Prompt.tsx b/src/components/Prompt.tsx index 9ffa9e7d8..1b9348d9c 100644 --- a/src/components/Prompt.tsx +++ b/src/components/Prompt.tsx @@ -3,6 +3,7 @@ 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' @@ -84,7 +85,8 @@ export function Actions({children}: React.PropsWithChildren<{}>) { a.justify_end, gtMobile ? [a.flex_row, a.flex_row_reverse, a.justify_start] - : [a.flex_col, a.pt_md, a.pb_4xl], + : [a.flex_col], + isNative && [a.pb_4xl], ]}> {children} -- cgit 1.4.1