From d5c43420c8b69d8b58b10dc65f017ab5946bc295 Mon Sep 17 00:00:00 2001 From: Kellegram Date: Fri, 10 Sep 2021 05:08:57 +0100 Subject: [PATCH] Workaround inconsistent text scaling (#100) p + pre remains at em as we want to use the parent element here (however rem could be used too, just requires a bigger value). I am setting it to 110% size, otherwise some code blocks have relatively small text. The smaller code blocks do appear bigger. --- html.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html.cfg b/html.cfg index 184c61b..7cec0ab 100644 --- a/html.cfg +++ b/html.cfg @@ -23,7 +23,7 @@ color: \#0060DF; }} \Css{p, a { -font-size: 1.2em; +font-size: 1.2rem; }} \Css{p + pre { -- 2.39.5