diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-03-18 15:39:57 -0700 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-03-18 15:39:57 -0700 |
commit | 02f3b84cb94677079dd2a9f3aacb8c9c11e9696e (patch) | |
tree | f64cde78651dd40f5046010f7e5ce36ba7551395 | |
parent | dba4d3fa7bb174ae2c0c5324e41144508b5dc8ed (diff) |
minor
-rw-r--r-- | src/screens/profile/InviteFriendsScreen.tsx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/screens/profile/InviteFriendsScreen.tsx b/src/screens/profile/InviteFriendsScreen.tsx index 0abac136..a57b72b6 100644 --- a/src/screens/profile/InviteFriendsScreen.tsx +++ b/src/screens/profile/InviteFriendsScreen.tsx @@ -174,7 +174,7 @@ const InviteFriendsScreen: React.FC<InviteFriendsScreenProps> = ({ <StatusBar barStyle="dark-content" /> <View style={styles.body}> <View style={styles.headerContainer}> - <Text style={styles.subheaderText}> + <Text style={styles.headerText}> Sharing is caring, invite friends, and create moments together! </Text> </View> @@ -246,7 +246,14 @@ const styles = StyleSheet.create({ fontWeight: '600', lineHeight: normalize(14.32), marginBottom: '5%', + }, + headerText: { textAlign: 'center', + color: '#828282', + fontSize: normalize(12), + fontWeight: '600', + lineHeight: normalize(14.32), + marginBottom: '5%', }, container: { alignSelf: 'center', |