fix(ext): increase result card font size and use foreground color

Fixes conflicting text-xs/text-[11px] classes and muted color on the
ResultCard component, making the result text more readable.

Closes #360
This commit is contained in:
Simon
2026-04-08 16:50:09 +08:00
parent 4734e2df26
commit 362bf822f7

View File

@@ -54,7 +54,7 @@ function ResultCard({
Result: {success ? 'Success' : 'Failed'}
</span>
</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}
</div>
)