diff options
author | Ivan Chen <ivan@tagg.id> | 2021-02-18 14:09:00 -0500 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-02-18 14:09:00 -0500 |
commit | c158b835a1f6cedd1448c2beb1389324a3c9e48a (patch) | |
tree | accfce9584f6a2953fa4821368b0df36514cb49a /src/components/taggs/Tagg.tsx | |
parent | 200cc2cc2c37d588bc37240161c3974f63ce02b4 (diff) | |
parent | 99db144ce20fd5f1502f668795ae7cafbc5b2eae (diff) |
Merge branch 'master' into tma626-people-tutorial
# Conflicts:
# src/screens/suggestedPeople/SuggestedPeopleScreen.tsx
Diffstat (limited to 'src/components/taggs/Tagg.tsx')
-rw-r--r-- | src/components/taggs/Tagg.tsx | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/components/taggs/Tagg.tsx b/src/components/taggs/Tagg.tsx index bb450b64..66694132 100644 --- a/src/components/taggs/Tagg.tsx +++ b/src/components/taggs/Tagg.tsx @@ -141,7 +141,12 @@ const Tagg: React.FC<TaggProps> = ({ setModalVisible={setModalVisible} completionCallback={linkNonIntegratedSocial} /> - <View style={styles.container}> + <View + style={ + screenType === ScreenType.SuggestedPeople + ? styles.spcontainer + : styles.container + }> <TouchableOpacity style={styles.iconTap} onPress={modalOrAuthBrowserOrPass}> @@ -174,6 +179,12 @@ const Tagg: React.FC<TaggProps> = ({ }; const styles = StyleSheet.create({ + spcontainer: { + justifyContent: 'space-between', + alignItems: 'center', + marginRight: 34, + height: normalize(60), + }, container: { justifyContent: 'space-between', alignItems: 'center', |