diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-12-05 13:35:42 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-05 13:35:42 -0800 |
commit | e7f973852f0b7f086d7648c4a978c0c46025c2eb (patch) | |
tree | 5db9bbb82a459695d22d16753237efd03e99618e /src | |
parent | 5f553c29dfdac1bf81debe5e28983a9dbe74bd7f (diff) | |
download | voidsky-e7f973852f0b7f086d7648c4a978c0c46025c2eb.tar.zst |
Signup flow minor UI fixes (#2094)
* Fix layout of no-policy notice * Fix spacing
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/auth/create/Policies.tsx | 9 | ||||
-rw-r--r-- | src/view/com/auth/create/Step3.tsx | 2 | ||||
-rw-r--r-- | src/view/com/modals/ChangeHandle.tsx | 2 |
3 files changed, 8 insertions, 5 deletions
diff --git a/src/view/com/auth/create/Policies.tsx b/src/view/com/auth/create/Policies.tsx index a52f07531..2c7d60818 100644 --- a/src/view/com/auth/create/Policies.tsx +++ b/src/view/com/auth/create/Policies.tsx @@ -27,8 +27,12 @@ export const Policies = ({ const pp = validWebLink(serviceDescription.links?.privacyPolicy) if (!tos && !pp) { return ( - <View style={styles.policies}> - <View style={[styles.errorIcon, {borderColor: pal.colors.text}, s.mt2]}> + <View style={[styles.policies, {flexDirection: 'row'}]}> + <View + style={[ + styles.errorIcon, + {borderColor: pal.colors.text, marginTop: 1}, + ]}> <FontAwesomeIcon icon="exclamation" style={pal.textLight as FontAwesomeIconStyle} @@ -106,6 +110,5 @@ const styles = StyleSheet.create({ height: 16, alignItems: 'center', justifyContent: 'center', - marginRight: 5, }, }) diff --git a/src/view/com/auth/create/Step3.tsx b/src/view/com/auth/create/Step3.tsx index 3b628b6b6..4c8a58519 100644 --- a/src/view/com/auth/create/Step3.tsx +++ b/src/view/com/auth/create/Step3.tsx @@ -39,7 +39,7 @@ export function Step3({ accessibilityHint="Input your user handle" /> <Text type="lg" style={[pal.text, s.pl5, s.pt10]}> - <Trans>Your full handle will be</Trans> + <Trans>Your full handle will be</Trans>{' '} <Text type="lg-bold" style={[pal.text, s.ml5]}> @{createFullHandle(uiState.handle, uiState.userDomain)} </Text> diff --git a/src/view/com/modals/ChangeHandle.tsx b/src/view/com/modals/ChangeHandle.tsx index 03516d35a..31f6d6ea7 100644 --- a/src/view/com/modals/ChangeHandle.tsx +++ b/src/view/com/modals/ChangeHandle.tsx @@ -267,7 +267,7 @@ function ProvidedHandleForm({ /> </View> <Text type="md" style={[pal.textLight, s.pl10, s.pt10]}> - <Trans>Your full handle will be </Trans> + <Trans>Your full handle will be</Trans>{' '} <Text type="md-bold" style={pal.textLight}> @{createFullHandle(handle, userDomain)} </Text> |