Fix balance line spacing: use width:42ch;max-width:100%
Some checks failed
check / check (push) Has been cancelled

This commit is contained in:
2026-02-26 03:17:08 +07:00
parent e1bd3bab58
commit a1ddbd035b
3 changed files with 6 additions and 3 deletions

View File

@@ -40,7 +40,7 @@ function render(ctx) {
}
const addrUsd = formatUsd(getAddressValueUsd(addr));
html += `<div class="flex text-xs">`;
html += `<span style="max-width:42ch">${addr.address}</span>`;
html += `<span style="width:42ch;max-width:100%">${addr.address}</span>`;
html += `<span class="text-right text-muted flex-1">${addrUsd}</span>`;
html += `</div>`;
html += balanceLinesForAddress(addr);