diff --git a/src/pages/Errors.elm b/src/pages/Errors.elm index daeb93a..8743290 100644 --- a/src/pages/Errors.elm +++ b/src/pages/Errors.elm @@ -50,14 +50,14 @@ view : Model -> Html msg view model = div [ style - [ "width" => "100%" - , "min-height" => "100%" + [ "min-height" => "100%" , "display" => "flex" , "flex-direction" => "column" , "align-items" => "center" , "background-color" => "black" , "color" => "rgb(233, 235, 235)" , "font-family" => "monospace" + , "overflow" => "auto" ] ] [ div @@ -66,6 +66,8 @@ view model = , "white-space" => "pre" , "background-color" => "rgb(39, 40, 34)" , "padding" => "2em" + , "margin-left" => "auto" + , "margin-right" => "auto" ] ] (addColors model)