From 59eb02a0224adef005aa99e25d209ed94be42e1e Mon Sep 17 00:00:00 2001 From: sneak Date: Thu, 26 Feb 2026 16:53:10 +0700 Subject: [PATCH] Darker section header background to visually delimit sections Add --color-section (#dddddd) distinct from --color-well (#f5f5f5). Section headers on the home screen use bg-section so they stand out as visual dividers rather than blending with the price well. --- src/popup/index.html | 2 +- src/popup/styles/main.css | 1 + src/popup/views/home.js | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/popup/index.html b/src/popup/index.html index 36841cb..7a8da85 100644 --- a/src/popup/index.html +++ b/src/popup/index.html @@ -220,7 +220,7 @@
Recent Transactions diff --git a/src/popup/styles/main.css b/src/popup/styles/main.css index 89443a7..8c909ba 100644 --- a/src/popup/styles/main.css +++ b/src/popup/styles/main.css @@ -11,6 +11,7 @@ --color-border-light: #cccccc; --color-hover: #eeeeee; --color-well: #f5f5f5; + --color-section: #dddddd; } body { diff --git a/src/popup/views/home.js b/src/popup/views/home.js index b3613b4..d558445 100644 --- a/src/popup/views/home.js +++ b/src/popup/views/home.js @@ -252,7 +252,7 @@ function render(ctx) { let html = ""; state.wallets.forEach((wallet, wi) => { html += `
`; - html += `
`; + html += `
`; html += `${wallet.name}`; if (wallet.type === "hd") { html += ``;