diff options
author | Ivan Chen <ivan@thetaggid.com> | 2021-02-18 14:01:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-18 14:01:38 -0500 |
commit | 6d516586c78a670421ec8cb4ea23f6a28c5d838d (patch) | |
tree | ee40e798d72d201c827951a83ec0f17471367588 /src/components/taggs | |
parent | f71a4347854620d03c634bec532fdfeaf821bd44 (diff) | |
parent | 6fb6afbf091457aaa5b7116cdc635f75162bcf5f (diff) |
Merge pull request #243 from shravyaramesh/tma628-mutual-friends
[TMA-628] Mutual friends
Diffstat (limited to 'src/components/taggs')
-rw-r--r-- | src/components/taggs/Tagg.tsx | 13 | ||||
-rw-r--r-- | src/components/taggs/TaggsBar.tsx | 2 |
2 files changed, 13 insertions, 2 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', diff --git a/src/components/taggs/TaggsBar.tsx b/src/components/taggs/TaggsBar.tsx index e7bdb0f2..c23f56a9 100644 --- a/src/components/taggs/TaggsBar.tsx +++ b/src/components/taggs/TaggsBar.tsx @@ -148,7 +148,7 @@ const styles = StyleSheet.create({ shadowRadius: 10, shadowOffset: {width: 0, height: 2}, zIndex: 1, - paddingBottom: 5, + marginBottom: 25, }, container: { backgroundColor: 'white', |