aboutsummaryrefslogtreecommitdiff
path: root/src/components/taggs/Tagg.tsx
diff options
context:
space:
mode:
authorShravya Ramesh <shravs1208@gmail.com>2021-02-17 17:27:13 -0800
committerShravya Ramesh <shravs1208@gmail.com>2021-02-17 17:27:13 -0800
commit2f3c621ec93b712b92919fcab95a8cb4eefe9337 (patch)
tree414beeb14891e37f17b226d0bb0d50a4beed70ee /src/components/taggs/Tagg.tsx
parent8e0c670ff6bac6af6a74cbf2b952b79233ee8e12 (diff)
adjusting padding around taggs bar
Diffstat (limited to 'src/components/taggs/Tagg.tsx')
-rw-r--r--src/components/taggs/Tagg.tsx13
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',