added count to tag card list, increased card title size
This commit is contained in:
parent
29bd875ecd
commit
4963fda6b0
@ -138,7 +138,7 @@ function PlaylistCard(props){
|
||||
<Grid item xs>
|
||||
<Card>
|
||||
<CardContent>
|
||||
<Typography variant="h5" component="h2">
|
||||
<Typography variant="h4" component="h2">
|
||||
{ props.playlist.name }
|
||||
</Typography>
|
||||
</CardContent>
|
||||
|
@ -95,9 +95,14 @@ function TagCard(props){
|
||||
<Grid item xs>
|
||||
<Card>
|
||||
<CardContent>
|
||||
<Typography variant="h5" component="h2">
|
||||
<Typography variant="h4" component="h2">
|
||||
{ props.tag.name }
|
||||
</Typography>
|
||||
{'count' in props.tag &&
|
||||
<Typography variant="h6" style={{color: "#b3b3b3"}}>
|
||||
{ props.tag.count }
|
||||
</Typography>
|
||||
}
|
||||
</CardContent>
|
||||
<CardActions>
|
||||
<ButtonGroup
|
||||
|
Loading…
Reference in New Issue
Block a user