From c131b89732d795951ba85fef6034e92c857ed519 Mon Sep 17 00:00:00 2001 From: sneak Date: Thu, 26 Feb 2026 17:11:27 +0700 Subject: [PATCH] Fix spacing inconsistencies on home screen - Remove mb-1 from Recent Transactions header (wallet headers have no bottom margin, so this should match) - Remove mb-3 wrapper from wallet sections (section header bg provides the visual break, extra margin created uneven gaps) - Change tx row padding from py-2 to py-1 to match address rows --- src/popup/index.html | 2 +- src/popup/views/home.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/popup/index.html b/src/popup/index.html index f8b423a..396d16c 100644 --- a/src/popup/index.html +++ b/src/popup/index.html @@ -220,7 +220,7 @@
Recent Transactions diff --git a/src/popup/views/home.js b/src/popup/views/home.js index d558445..8f722c2 100644 --- a/src/popup/views/home.js +++ b/src/popup/views/home.js @@ -145,7 +145,7 @@ function renderHomeTxList(ctx) { const opacity = tx.isError ? " opacity:0.5;" : ""; const ago = escapeHtml(timeAgo(tx.timestamp)); const iso = escapeHtml(isoDate(tx.timestamp)); - html += `
`; + html += `
`; html += `
${ago}${dirLabel}${err}
`; html += `
${dot}${addrStr}${amountStr}
`; html += `
`; @@ -251,7 +251,7 @@ function render(ctx) { let html = ""; state.wallets.forEach((wallet, wi) => { - html += `
`; + html += `
`; html += `
`; html += `${wallet.name}`; if (wallet.type === "hd") {