From cc18e094ce9d4d09d49efc4ec8f5fc06e2bd7b20 Mon Sep 17 00:00:00 2001 From: Jotra04 <48770470+Jotra04@users.noreply.github.com> Date: Sat, 9 May 2020 11:35:28 +0200 Subject: [PATCH] Fixed overflow issues Preventing long expressions from overflowing, thereby fixing #5 --- src/Playground.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Playground.css b/src/Playground.css index 406f728..047b5eb 100644 --- a/src/Playground.css +++ b/src/Playground.css @@ -27,6 +27,10 @@ form.playground p.expression input { margin-right: 1ex; } +form.playground pre.expression { + overflow: auto; +} + form.playground p.multiple { font-style: italic; text-align: right;