Fix text color in feedback stats

This commit is contained in:
Ilango 2024-02-21 14:22:50 +05:30
parent 9ce734c539
commit 02b72f917a
1 changed files with 2 additions and 2 deletions

View File

@ -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>