Fix text color in feedback stats
This commit is contained in:
parent
9ce734c539
commit
02b72f917a
|
|
@ -10,10 +10,10 @@ const StatsCard = ({ title, stat }) => {
|
||||||
return (
|
return (
|
||||||
<Card sx={{ border: '1px solid #e0e0e0', borderRadius: `${customization.borderRadius}px` }}>
|
<Card sx={{ border: '1px solid #e0e0e0', borderRadius: `${customization.borderRadius}px` }}>
|
||||||
<CardContent>
|
<CardContent>
|
||||||
<Typography sx={{ fontSize: 14 }} color='text.secondary' gutterBottom>
|
<Typography sx={{ fontSize: 14 }} color='text.primary' gutterBottom>
|
||||||
{title}
|
{title}
|
||||||
</Typography>
|
</Typography>
|
||||||
<Typography sx={{ fontSize: 30, fontWeight: 500 }} color='text.secondary'>
|
<Typography sx={{ fontSize: 30, fontWeight: 500 }} color='text.primary'>
|
||||||
{stat}
|
{stat}
|
||||||
</Typography>
|
</Typography>
|
||||||
</CardContent>
|
</CardContent>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue