aboutsummaryrefslogtreecommitdiff
path: root/src/components/profile/Content.tsx
diff options
context:
space:
mode:
authorShravya Ramesh <shravs1208@gmail.com>2021-02-09 18:39:03 -0800
committerShravya Ramesh <shravs1208@gmail.com>2021-02-09 18:39:03 -0800
commit949fc58ea844fa51b4fcbf97e40720efb43dc058 (patch)
tree9c93091edfa27c0465dc817378f8ab43ee06d809 /src/components/profile/Content.tsx
parent4b6faadd4cc0a69b0aad5b44dfe6292635b39f6b (diff)
added taggs bar and white ring
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;