aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/screens/suggestedPeopleOnboarding/SuggestedPeopleUploadPictureScreen.tsx19
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: {