diff --git a/src/components/basicUIElements/view/tag/tagStyles.js b/src/components/basicUIElements/view/tag/tagStyles.js index 61b8dcadd..f5859850b 100644 --- a/src/components/basicUIElements/view/tag/tagStyles.js +++ b/src/components/basicUIElements/view/tag/tagStyles.js @@ -8,11 +8,14 @@ export default EStyleSheet.create({ isPin: { backgroundColor: '$primaryBlue', }, + isPostCardTag: { + backgroundColor: '$iconColor', + }, textWrapper: { paddingHorizontal: 10, justifyContent: 'center', marginRight: 8, - height: 15, + height: 20, backgroundColor: '$iconColor', borderRadius: 50, }, diff --git a/src/components/basicUIElements/view/tag/tagView.js b/src/components/basicUIElements/view/tag/tagView.js index 2aff6106e..53fe998a9 100644 --- a/src/components/basicUIElements/view/tag/tagView.js +++ b/src/components/basicUIElements/view/tag/tagView.js @@ -2,10 +2,14 @@ import React, { Fragment } from 'react'; import { Text, View, TouchableOpacity } from 'react-native'; import styles from './tagStyles'; -const Tag = ({ onPress, isPin, value }) => ( +const Tag = ({ + onPress, isPin, value, isPostCardTag, +}) => ( onPress && onPress(value)}> - + {value} diff --git a/src/components/postElements/headerDescription/view/postHeaderDescription.js b/src/components/postElements/headerDescription/view/postHeaderDescription.js index ae0754cf1..ffe264b40 100644 --- a/src/components/postElements/headerDescription/view/postHeaderDescription.js +++ b/src/components/postElements/headerDescription/view/postHeaderDescription.js @@ -77,7 +77,7 @@ class PostHeaderDescription extends Component { {tag && ( tagOnPress && tagOnPress()}> - + )} {date}