diff --git a/src/components/basicUIElements/view/tag/tagView.js b/src/components/basicUIElements/view/tag/tagView.js
index 046c7e179..d786c533c 100644
--- a/src/components/basicUIElements/view/tag/tagView.js
+++ b/src/components/basicUIElements/view/tag/tagView.js
@@ -1,17 +1,15 @@
-import React, { Fragment } from 'react';
+import React from 'react';
import { Text, View, TouchableOpacity } from 'react-native';
import styles from './tagStyles';
const Tag = ({ onPress, isPin, value, isPostCardTag }) => (
-
- onPress && onPress(value)}>
-
- {value}
-
-
-
+ onPress && onPress(value)}>
+
+ {value}
+
+
);
export default Tag;
diff --git a/src/components/postElements/tags/view/tagsStyles.js b/src/components/postElements/tags/view/tagsStyles.js
index 0b4d8772c..8f90bb57f 100644
--- a/src/components/postElements/tags/view/tagsStyles.js
+++ b/src/components/postElements/tags/view/tagsStyles.js
@@ -3,5 +3,11 @@ import EStyleSheet from 'react-native-extended-stylesheet';
export default EStyleSheet.create({
container: {
flexDirection: 'row',
+ marginLeft: -20,
+ marginRight: -20,
+ height: 30,
+ },
+ firstTag: {
+ marginLeft: 10,
},
});
diff --git a/src/components/postElements/tags/view/tagsView.js b/src/components/postElements/tags/view/tagsView.js
index f6eda0b7a..8c46e42a6 100644
--- a/src/components/postElements/tags/view/tagsView.js
+++ b/src/components/postElements/tags/view/tagsView.js
@@ -27,7 +27,9 @@ class TagsView extends PureComponent {
data={tags}
horizontal
renderItem={({ item, index }) => (
-
+
+
+
)}
keyExtractor={item => item}
/>