diff options
author | Eric Bailey <git@esb.lol> | 2024-04-12 17:19:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-12 15:19:58 -0700 |
commit | 6218eb0eeac2ccab33c56fda97a52837edd58694 (patch) | |
tree | 22914ee95234380749004037c344065855c39c0d /src | |
parent | 1f61109cfa8307cbbceea604b1daec7486dd3393 (diff) | |
download | voidsky-6218eb0eeac2ccab33c56fda97a52837edd58694.tar.zst |
Zhuzh sign in dialog (#3512)
Diffstat (limited to 'src')
-rw-r--r-- | src/components/dialogs/Signin.tsx | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/components/dialogs/Signin.tsx b/src/components/dialogs/Signin.tsx index 488eb5c73..b9c939e94 100644 --- a/src/components/dialogs/Signin.tsx +++ b/src/components/dialogs/Signin.tsx @@ -45,7 +45,7 @@ function SigninDialogInner({}: {control: Dialog.DialogOuterProps['control']}) { <Dialog.ScrollableInner label={_(msg`Sign into Bluesky or create a new account`)} style={[gtMobile ? {width: 'auto', maxWidth: 420} : a.w_full]}> - <View> + <View style={[!isNative && a.p_2xl]}> <View style={[ a.flex_row, @@ -60,7 +60,18 @@ function SigninDialogInner({}: {control: Dialog.DialogOuterProps['control']}) { </View> </View> - <Text style={[a.text_lg, a.text_center, t.atoms.text, a.pb_2xl]}> + <Text + style={[ + a.text_lg, + a.text_center, + t.atoms.text, + a.pb_2xl, + a.leading_snug, + a.mx_auto, + { + maxWidth: 300, + }, + ]}> <Trans> Sign in or create your account to join the conversation! </Trans> |