From 20da768954d0f832db5911030b231140971074b2 Mon Sep 17 00:00:00 2001 From: Fini Jastrow Date: Mon, 9 Oct 2023 13:32:09 +0200 Subject: [PATCH] Fix wrong small version of all-icons-divider [why] In the small screen version the all-icons section divider becomes ellyptic or something, not round anymore. [how] When scaling down we do not scale the line spacing down enough. Fixes: #1376 Signed-off-by: Fini Jastrow --- _includes/css/nerd-font-tweaks.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/css/nerd-font-tweaks.scss b/_includes/css/nerd-font-tweaks.scss index 3ced6a02ac..64f2c38142 100644 --- a/_includes/css/nerd-font-tweaks.scss +++ b/_includes/css/nerd-font-tweaks.scss @@ -733,7 +733,7 @@ a.nerd-font-button:before { } .sectioninner3 { - line-height: 21px; + line-height: 16px; font-size: 11px; } }