fix: standardize EmptyState typography (#27720)

This commit is contained in:
Jake Howell
2026-08-19 22:01:58 +07:00
committed by GitHub
parent 71b5bc398f
commit 46c0dba1e9
@@ -34,9 +34,11 @@ export const EmptyState: FC<EmptyStateProps> = ({
)}
{...attrs}
>
<h5 className="text-2xl font-medium m-0">{message}</h5>
<h5 className="m-0 font-medium text-content-primary text-lg">
{message}
</h5>
{description && (
<p className="mt-4 line-height-[140%] max-w-md text-content-secondary">
<p className="mt-4 max-w-md text-content-secondary text-sm">
{description}
</p>
)}