diff options
-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', |