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) { if (prev !== null && current !== null) {
return ( return (
<div className="flex flex-col items-end gap-0.5"> <span className="inline-flex items-center gap-1.5">
{indicator} {indicator}
<span className="text-[10px] text-muted-foreground tabular-nums"> <span className="text-[10px] text-muted-foreground tabular-nums">
{formatPrice(prev)} → {formatPrice(current)} {formatPrice(prev)} → {formatPrice(current)}
</span> </span>
</div> </span>
); );
} }