From 1422bd8540f6d6aa74d9b221a054fa5d52e19e11 Mon Sep 17 00:00:00 2001 From: d11n Date: Sat, 4 Sep 2021 15:06:56 +0200 Subject: [PATCH] Decrease notification badge padding (#2841) Fixes #2840. --- BTCPayServer/wwwroot/main/site.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/BTCPayServer/wwwroot/main/site.css b/BTCPayServer/wwwroot/main/site.css index eef679b27..1deff3793 100644 --- a/BTCPayServer/wwwroot/main/site.css +++ b/BTCPayServer/wwwroot/main/site.css @@ -333,7 +333,8 @@ svg.icon-note { .notification-badge { position: relative; top: -1px; - min-width: 2em; + min-width: 1.5em; + padding: .25em; } @media (min-width: 992px) { @@ -342,7 +343,7 @@ svg.icon-note { } .notification-badge { position: absolute; - top: 0; + top: .125rem; left: 1rem; } }