From a1ddbd035b87fe72819042f2026667b35d7c0079 Mon Sep 17 00:00:00 2001 From: sneak Date: Thu, 26 Feb 2026 03:17:08 +0700 Subject: [PATCH] Fix balance line spacing: use width:42ch;max-width:100% --- src/popup/index.html | 5 ++++- src/popup/views/helpers.js | 2 +- src/popup/views/home.js | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/popup/index.html b/src/popup/index.html index b654a5a..8c5ec69 100644 --- a/src/popup/index.html +++ b/src/popup/index.html @@ -201,7 +201,10 @@ class="flex text-xs mb-3 cursor-pointer" title="Click to copy" > - + ` + - `` + + `` + `${symbol}` + `${qty}` + `` + diff --git a/src/popup/views/home.js b/src/popup/views/home.js index 0c12c96..8a59061 100644 --- a/src/popup/views/home.js +++ b/src/popup/views/home.js @@ -40,7 +40,7 @@ function render(ctx) { } const addrUsd = formatUsd(getAddressValueUsd(addr)); html += `
`; - html += `${addr.address}`; + html += `${addr.address}`; html += `${addrUsd}`; html += `
`; html += balanceLinesForAddress(addr);