From caa0a9bfc9badf1683aed63dd536615d4ce2b327 Mon Sep 17 00:00:00 2001 From: Christoph Rueger Date: Wed, 9 Oct 2024 21:32:36 +0200 Subject: [PATCH] css: horizontal scrollbar for wide code blocks fixes the little annoyance that some code blocks appeared cutoff on the right side Signed-off-by: Christoph Rueger --- docs/css/style.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/css/style.scss b/docs/css/style.scss index c4911fe274..0e4d0f46f0 100644 --- a/docs/css/style.scss +++ b/docs/css/style.scss @@ -196,4 +196,8 @@ ul .side-nav-section{ .side-nav{ padding-top: 1px !important; +} + +pre.highlight { + overflow: auto; } \ No newline at end of file