From 9880b9c18f579cdf26bde27f1c18a062622a65ea Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Sat, 18 Jul 2020 09:50:59 -0400 Subject: [PATCH] Fix too small magnifier Related issue: - https://github.com/uBlockOrigin/uBlock-issues/issues/1092 As a result of earlier redesign, the magnifier ended up being too small. The size of the magnifier will now be dependent on the default font size instead of the parent font size. --- src/css/document-blocked.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/css/document-blocked.css b/src/css/document-blocked.css index fc2d76583..38b92bb37 100644 --- a/src/css/document-blocked.css +++ b/src/css/document-blocked.css @@ -63,6 +63,7 @@ a { color: var(--fg-0-60); cursor: pointer; fill: var(--fg-0-60); + font-size: 1rem; padding: var(--default-gap-xxsmall); position: absolute; transform: translate(0, -50%);