From 233def3cca07aebea5ea05cfacf3b1019e016e82 Mon Sep 17 00:00:00 2001 From: janwirth Date: Wed, 16 Mar 2022 17:50:22 +0100 Subject: [PATCH] Fix in-browser compiler error display --- reactor/src/Errors.elm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reactor/src/Errors.elm b/reactor/src/Errors.elm index 9c8c63936..21b148907 100644 --- a/reactor/src/Errors.elm +++ b/reactor/src/Errors.elm @@ -57,6 +57,9 @@ viewError error = , style "white-space" "pre-wrap" , style "background-color" "black" , style "padding" "2em" + , style "box-sizing" "border-box" + , style "width" "100%" + , style "overflow" "scroll" ] (viewErrorHelp error) ]