From 01048a1c3d4caf856de35753580236c9b6103c7b Mon Sep 17 00:00:00 2001 From: sneak Date: Thu, 26 Feb 2026 16:44:57 +0700 Subject: [PATCH] Consistent headings on home: lighter title rules, thick section dividers Wallet and Recent Transactions headings now use border-border-light for their bottom rule. Thick 2px black horizontal rules separate wallet sections from each other and from the transactions section, with generous vertical spacing. --- src/popup/index.html | 15 +++++++++++++-- src/popup/views/home.js | 5 ++++- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/src/popup/index.html b/src/popup/index.html index c6de379..2e93eab 100644 --- a/src/popup/index.html +++ b/src/popup/index.html @@ -218,8 +218,19 @@
-
-

Recent Transactions

+
+
+
+ Recent Transactions +
Loading...
diff --git a/src/popup/views/home.js b/src/popup/views/home.js index 1992155..8e373a7 100644 --- a/src/popup/views/home.js +++ b/src/popup/views/home.js @@ -251,8 +251,11 @@ function render(ctx) { let html = ""; state.wallets.forEach((wallet, wi) => { + if (wi > 0) { + html += `
`; + } html += `
`; - html += `
`; + html += `
`; html += `${wallet.name}`; if (wallet.type === "hd") { html += ``;