style(analysis): show raw values inline instead of below percentage

This commit is contained in:
Jose Selesan
2026-08-27 10:37:04 -03:00
parent f9e0267c94
commit 88fa05d5b8

View File

@@ -96,12 +96,12 @@ function VariationIndicator({
if (prev !== null && current !== null) {
return (
<div className="flex flex-col items-end gap-0.5">
<span className="inline-flex items-center gap-1.5">
{indicator}
<span className="text-[10px] text-muted-foreground tabular-nums">
{formatPrice(prev)} → {formatPrice(current)}
</span>
</div>
</span>
);
}