Improve output wrapping, fix typo in editor themes

This commit is contained in:
Nilay Majorwar 2022-01-26 01:37:54 +05:30
parent c9346515b2
commit 81a3563181
3 changed files with 7 additions and 3 deletions

View File

@ -97,7 +97,7 @@
},
{
"foreground": "#2EE6D6",
"token": "turqoise"
"token": "turquoise"
},
{
"foreground": "#62D96B",

View File

@ -116,7 +116,7 @@
},
{
"foreground": "#00B3A4",
"token": "turqoise"
"token": "turquoise"
},
{
"foreground": "#29A634",

View File

@ -43,7 +43,11 @@ const OutputViewerComponent = (_: {}, ref: React.Ref<OutputViewerRef>) => {
return (
<div style={{ padding: 10, fontSize: 16 }}>
<Text style={{ fontFamily: "monospace" }}>{value}</Text>
<pre
style={{ margin: 0, whiteSpace: "pre-wrap", wordWrap: "break-word" }}
>
{value}
</pre>
{value && <div style={{ height: 10 }} />}
<Text style={{ fontFamily: "monospace", color: Colors.RED3 }}>
{error}