aboutsummaryrefslogtreecommitdiff
path: root/src/components/profile/Content.tsx
diff options
context:
space:
mode:
authorIvan Chen <ivan@thetaggid.com>2021-02-11 16:53:24 -0500
committerGitHub <noreply@github.com>2021-02-11 16:53:24 -0500
commit2561d20e17a697726d6b77accf79c9da2d1f6ef6 (patch)
tree9e2fdacee1040a9e9f975a329846dfa60cf5f3a4 /src/components/profile/Content.tsx
parent3bc52c4e021199c5b546d51cd238aad9a96852a7 (diff)
parent97e73f47622df32859964df4c94a4d419590bee2 (diff)
Merge pull request #237 from shravyaramesh/tma255-taggs-bar
[TMA255] Suggested People: Taggs bar
Diffstat (limited to 'src/components/profile/Content.tsx')
-rw-r--r--src/components/profile/Content.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/profile/Content.tsx b/src/components/profile/Content.tsx
index 28000dd7..86d40f1b 100644
--- a/src/components/profile/Content.tsx
+++ b/src/components/profile/Content.tsx
@@ -309,7 +309,9 @@ const Content: React.FC<ContentProps> = ({y, userXId, screenType}) => {
isBlocked,
}}
/>
- <TaggsBar {...{y, profileBodyHeight, userXId, screenType}} />
+ <View style={styles.taggsbarContainer}>
+ <TaggsBar {...{y, profileBodyHeight, userXId, screenType}} />
+ </View>
<View style={styles.momentsContainer}>
{userXId && moments.length === 0 && (
<View style={styles.plusIconContainer}>
@@ -382,6 +384,7 @@ const Content: React.FC<ContentProps> = ({y, userXId, screenType}) => {
const styles = StyleSheet.create({
container: {
flex: 1,
+ backgroundColor: '#fff',
},
momentsContainer: {
backgroundColor: '#f2f2f2',
@@ -415,6 +418,7 @@ const styles = StyleSheet.create({
color: 'gray',
marginVertical: '8%',
},
+ taggsbarContainer: {paddingHorizontal: 15},
});
export default Content;