From b4177079eb67f5130cd52d516dd814cd78c57835 Mon Sep 17 00:00:00 2001 From: Jonas Kuche Date: Fri, 12 Jan 2024 13:41:16 +0100 Subject: [PATCH] fix(math-checker): repair overflow scrollbar --- .../app/tool-components/math-input/math-input.component.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/fbs-core/web/src/app/tool-components/math-input/math-input.component.scss b/modules/fbs-core/web/src/app/tool-components/math-input/math-input.component.scss index 35b0fd98d..5865a771e 100644 --- a/modules/fbs-core/web/src/app/tool-components/math-input/math-input.component.scss +++ b/modules/fbs-core/web/src/app/tool-components/math-input/math-input.component.scss @@ -9,6 +9,10 @@ math-field:focus-within { outline: unset; } +math-field::part(content) { + overflow-x: auto; +} + math-field::part(menu-toggle) { display: none; }