From d9df8a05a560d2e89e8b8b459b822ba1fa9b86c1 Mon Sep 17 00:00:00 2001 From: sneak Date: Thu, 26 Feb 2026 16:16:03 +0700 Subject: [PATCH] Fix [info] button border not rendering px-0.5 was not being generated by Tailwind since it only appeared in JS, not in scanned HTML. Use inline padding instead. --- src/popup/views/home.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/popup/views/home.js b/src/popup/views/home.js index ba640c8..7cfbd48 100644 --- a/src/popup/views/home.js +++ b/src/popup/views/home.js @@ -103,7 +103,7 @@ function render(ctx) { wallet.addresses.forEach((addr, ai) => { html += `
`; const isActive = state.activeAddress === addr.address; - const infoBtn = `[info]`; + const infoBtn = `[info]`; const dot = addressDotHtml(addr.address); const titleBold = isActive ? "font-bold" : ""; html += `
Address ${wi + 1}.${ai + 1}
`;