diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-01-25 22:24:37 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-25 22:24:37 -0800 |
commit | 6149437c05bd0ffbde08833e2a32c967f08f8414 (patch) | |
tree | aa500af7fc49585a40abbab30cb2bde02792a28a /src/screens/Deactivated.tsx | |
parent | c8175b9c4e6c4a7b614ec46807db91c3dee529de (diff) | |
download | voidsky-6149437c05bd0ffbde08833e2a32c967f08f8414.tar.zst |
Account creation improvements & some other fixes (#2636)
* Quick fix to mobile * Enlarge tap targets in account creation * Improve keyboard behaviors during account creation * Improve autocompletion behaviors during account creation * Use the logo in the Deactivated screen
Diffstat (limited to 'src/screens/Deactivated.tsx')
-rw-r--r-- | src/screens/Deactivated.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/screens/Deactivated.tsx b/src/screens/Deactivated.tsx index 965fad07b..4a2ebf589 100644 --- a/src/screens/Deactivated.tsx +++ b/src/screens/Deactivated.tsx @@ -14,8 +14,8 @@ import {Text} from '#/components/Typography' import {isWeb} from '#/platform/detection' import {H2, P} from '#/components/Typography' import {ScrollView} from '#/view/com/util/Views' -import {Group3_Stroke2_Corner0_Rounded as Group3} from '#/components/icons/Group3' import {Loader} from '#/components/Loader' +import {Logo} from '#/view/icons/Logo' const COL_WIDTH = 400 @@ -96,8 +96,8 @@ export function Deactivated() { style={[a.flex_row, a.justify_center, gtMobile ? a.pt_4xl : a.px_xl]}> <View style={[a.flex_1, {maxWidth: COL_WIDTH}]}> <View - style={[a.w_full, a.justify_center, a.align_center, a.mt_4xl]}> - <Group3 fill="none" stroke={t.palette.contrast_900} width={120} /> + style={[a.w_full, a.justify_center, a.align_center, a.my_4xl]}> + <Logo width={120} /> </View> <H2 style={[a.pb_sm]}> @@ -105,8 +105,8 @@ export function Deactivated() { </H2> <P style={[t.atoms.text_contrast_700]}> <Trans> - There's been a rush of new users! We'll activate your account as - soon as we can. + There's been a rush of new users to Bluesky! We'll activate your + account as soon as we can. </Trans> </P> |