From fbca10e2a18aa1f3c2ba522da4928e73584f0aa7 Mon Sep 17 00:00:00 2001 From: Joe Hutchinson Date: Thu, 10 Jan 2019 09:59:20 -0500 Subject: [PATCH] Fix overflow of KaTeX when longer than width of container --- static/css/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/css/style.css b/static/css/style.css index 1ba2a77..332d185 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -285,6 +285,10 @@ strong { .muted-text { color: #7A7B7C; } +.katex-display { + overflow-x: auto; + overflow-y: hidden; +} .no-scroll { overflow: hidden; position: fixed;