From ffd6b3743ed2037a56c680dc327d80211019cbfb Mon Sep 17 00:00:00 2001 From: Jaimos Skriletz Date: Wed, 10 Apr 2024 21:18:55 -0600 Subject: [PATCH] Add clear fix to code blocks. Floats (mostly the toc float) will overlap this div. Add clear fix so floats cannot float over it. --- _sass/_fvwm3.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/_sass/_fvwm3.scss b/_sass/_fvwm3.scss index 7e7aa08d..95485680 100644 --- a/_sass/_fvwm3.scss +++ b/_sass/_fvwm3.scss @@ -15,6 +15,11 @@ ul, ol { margin-bottom: 1rem !important; } +// Clearfix for highlight blocks +.highlight { + clear: both; +} + // Block Quotes blockquote { background: darken($bg-color, 5%);