Make tx detail blockies 48px to match address detail page
All checks were successful
check / check (push) Successful in 14s

Display consistency: blockies must be the same size everywhere.
This commit is contained in:
2026-02-26 16:36:00 +07:00
parent f69ce7f9d2
commit db5e968b1d

View File

@@ -215,7 +215,7 @@ function copyableHtml(text, extraClass) {
function blockieHtml(address) { function blockieHtml(address) {
const src = makeBlockie(address); const src = makeBlockie(address);
return `<img src="${src}" width="16" height="16" style="image-rendering:pixelated;border-radius:50%;margin-right:4px;vertical-align:middle;flex-shrink:0;display:inline-block">`; return `<img src="${src}" width="48" height="48" style="image-rendering:pixelated;border-radius:50%;display:inline-block">`;
} }
function txDetailAddressHtml(address) { function txDetailAddressHtml(address) {