style(analysis): show raw values inline instead of below percentage
This commit is contained in:
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user