diff options
author | João Ferreiro <ferreiro@pinkroom.dev> | 2022-11-29 10:29:19 +0000 |
---|---|---|
committer | João Ferreiro <ferreiro@pinkroom.dev> | 2022-11-29 10:29:19 +0000 |
commit | 77ea3bfd0a28f76651ed425cf733abcf01ecaa24 (patch) | |
tree | 53f6806d2ca00366f6f3298e378aa6a59ca17e83 /src/view/com/modals/EditProfile.tsx | |
parent | 3ce113f1076bbeeffc20888b3a28b2680ada8ab5 (diff) | |
parent | 88c868dd808d204fc29deb162609de984745b951 (diff) | |
download | voidsky-77ea3bfd0a28f76651ed425cf733abcf01ecaa24.tar.zst |
Merge branch 'main' into upload-image
Diffstat (limited to 'src/view/com/modals/EditProfile.tsx')
-rw-r--r-- | src/view/com/modals/EditProfile.tsx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/view/com/modals/EditProfile.tsx b/src/view/com/modals/EditProfile.tsx index 50acccf67..1b5c99d97 100644 --- a/src/view/com/modals/EditProfile.tsx +++ b/src/view/com/modals/EditProfile.tsx @@ -65,8 +65,8 @@ export function Component({ return ( <View style={s.flex1}> - <Text style={[s.textCenter, s.bold, s.f16]}>Edit my profile</Text> <BottomSheetScrollView style={styles.inner}> + <Text style={styles.title}>Edit my profile</Text> {error !== '' && ( <View style={s.mb10}> <ErrorMessage message={error} /> @@ -114,6 +114,12 @@ const styles = StyleSheet.create({ inner: { padding: 14, }, + title: { + textAlign: 'center', + fontWeight: 'bold', + fontSize: 24, + marginBottom: 18, + }, group: { marginBottom: 10, }, |