style(vault): bold black currency amounts + align Riscatta buttons

This commit is contained in:
simoleo89
2026-06-15 20:47:04 +02:00
parent e4fb00baac
commit 38ffc80d0a
+2 -2
View File
@@ -92,11 +92,11 @@ export const VaultView: FC<{}> = props =>
</span> </span>
<Text bold className="truncate">{ localizeWithFallback('earnings.' + row.key, row.label) }</Text> <Text bold className="truncate">{ localizeWithFallback('earnings.' + row.key, row.label) }</Text>
</div> </div>
<div className="flex min-w-[78px] shrink-0 items-center justify-end gap-2"> <div className="flex min-w-[92px] shrink-0 items-center justify-end gap-2.5">
{ row.currencies.map((currency, index) => ( { row.currencies.map((currency, index) => (
<span key={ index } className="flex items-center gap-1"> <span key={ index } className="flex items-center gap-1">
<LayoutCurrencyIcon type={ currency } /> <LayoutCurrencyIcon type={ currency } />
<Text bold small>0</Text> <Text bold>0</Text>
</span> </span>
)) } )) }
</div> </div>