From dafc09c892c9f4d393f8526739972291c52fc046 Mon Sep 17 00:00:00 2001 From: MartinAramayo Date: Mon, 24 Oct 2022 14:59:14 -0300 Subject: [PATCH] Make long KaTeX equations scrollable in the x-axis Suggested from: https://katex.org/docs/issues.html, I have tested it adding a long equation and activating a phone user agent. --- assets/scss/general.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/assets/scss/general.scss b/assets/scss/general.scss index e12bb0e..d6f6ec3 100644 --- a/assets/scss/general.scss +++ b/assets/scss/general.scss @@ -29,3 +29,10 @@ a { color: var(--body-text-color); } } + + +/* --- Make long KaTeX equations scrollable in the x-axis --- */ +.katex-display>.katex { + overflow-x: auto; + overflow-y: hidden; + }