Merge pull request #413 from alibaba/fix/ext-result-card-font-size

fix(ext): increase result card font size and use foreground color
This commit is contained in:
Simon
2026-04-08 16:52:39 +08:00
committed by GitHub

View File

@@ -54,7 +54,7 @@ function ResultCard({
Result: {success ? 'Success' : 'Failed'} Result: {success ? 'Success' : 'Failed'}
</span> </span>
</div> </div>
<p className="text-xs text-[11px] text-muted-foreground pl-5 whitespace-pre-wrap">{text}</p> <p className="text-[12px] text-foreground pl-5 whitespace-pre-wrap">{text}</p>
{children} {children}
</div> </div>
) )