Skip to content

Commit

Permalink
Update Tag.js
Browse files Browse the repository at this point in the history
  • Loading branch information
KingPleather committed Jul 6, 2024
1 parent a3fcdec commit 2d91f07
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/components/Tag.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export default function Tag(props) {
return (
<View style={styles.back}>
<Text style={styles.tagText}>{props.text}</Text>

</View>
);
}
Expand All @@ -15,14 +14,13 @@ const styles = StyleSheet.create({
justifyContent: "center",
borderRadius: 15,
backgroundColor: "#353535",
alignSelf:"flex-start"
alignSelf: "flex-start",
},

tagText: {
fontSize: 16,
paddingHorizontal:"2%",
paddingVertical:"1%",
paddingHorizontal: "2%",
paddingVertical: "1%",
color: "white",
},

});

0 comments on commit 2d91f07

Please sign in to comment.