diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-03-12 11:06:53 -0800 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-03-12 11:06:53 -0800 |
commit | 441ad321ebbc9354101f4b547197603ced63a15c (patch) | |
tree | eae02f9eeca2101157f0506eb569ea2f4e579ca3 | |
parent | 20e4f9e5411bea400212737a7f3967052a3fe165 (diff) |
style
-rw-r--r-- | src/screens/suggestedPeopleOnboarding/SuggestedPeopleUploadPictureScreen.tsx | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/src/screens/suggestedPeopleOnboarding/SuggestedPeopleUploadPictureScreen.tsx b/src/screens/suggestedPeopleOnboarding/SuggestedPeopleUploadPictureScreen.tsx index 5a9e23da..74034287 100644 --- a/src/screens/suggestedPeopleOnboarding/SuggestedPeopleUploadPictureScreen.tsx +++ b/src/screens/suggestedPeopleOnboarding/SuggestedPeopleUploadPictureScreen.tsx @@ -114,7 +114,9 @@ const SuggestedPeopleUploadPictureScreen: React.FC<SuggestedPeopleUploadPictureS {loading && <TaggLoadingIndicator fullscreen />} <StatusBar barStyle={'light-content'} /> <SafeAreaView style={styles.container}> - <Text style={styles.title}>{editing ? 'Edit Suggested' : 'PHOTO'}</Text> + <Text style={editing ? styles.titleEditSuggested : styles.titlePHOTO}> + {editing ? 'Edit Suggested' : 'PHOTO'} + </Text> {image ? ( <Text style={styles.body}> {editing @@ -191,20 +193,28 @@ const styles = StyleSheet.create({ backgroundColor: '#878787', alignItems: 'center', }, - title: { + titlePHOTO: { marginTop: '5%', fontSize: normalize(25), lineHeight: normalize(30), fontWeight: '600', color: 'white', }, + titleEditSuggested: { + marginTop: '5%', + fontSize: normalize(19), + lineHeight: normalize(22.7), + letterSpacing: normalize(0.1), + fontWeight: '600', + color: 'white', + }, body: { fontSize: normalize(15), lineHeight: normalize(18), textAlign: 'center', fontWeight: '600', color: 'white', - marginTop: '5%', + marginTop: '2%', width: SCREEN_WIDTH * 0.7, }, buttonLabel: { @@ -243,7 +253,8 @@ const styles = StyleSheet.create({ width: SCREEN_WIDTH * 0.6, justifyContent: 'space-between', alignItems: 'center', - marginBottom: 10, + marginBottom: '4%', + marginTop: '0.8%', }, editBadgesSubContainer: {flexDirection: 'row', alignItems: 'center'}, editBadgesText: { |