fix: UI styling in overview tab of Data quality (#20868)

This commit is contained in:
Shailesh Parmar 2025-04-16 23:04:37 +05:30 committed by GitHub
parent e4cc3527e5
commit d32c98e7f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -34,14 +34,14 @@ const DataStatisticWidget = ({
className="h-full" className="h-full"
data-testid={`${name}-data-statistic-widget`} data-testid={`${name}-data-statistic-widget`}
loading={isLoading}> loading={isLoading}>
<Typography.Paragraph className="text-xs text-grey-muted data-statistic-widget-title"> <Typography.Paragraph className="text-xs font-semibold data-statistic-widget-title">
{title} {title}
</Typography.Paragraph> </Typography.Paragraph>
<div className="d-flex gap-2 items-center m-b-xss"> <div className="d-flex gap-2 items-center m-b-xss">
<Icon height={24} width={24} {...iconProps} /> <Icon height={24} width={24} {...iconProps} />
<Typography.Paragraph <Typography.Paragraph
className="font-medium text-xl m-b-0" className="font-medium text-md m-b-0"
data-testid="total-value"> data-testid="total-value">
{`${countValue} ${dataLabel}`} {`${countValue} ${dataLabel}`}
</Typography.Paragraph> </Typography.Paragraph>