aboutsummaryrefslogtreecommitdiff
path: root/ext/wasm/common/testing.css
diff options
context:
space:
mode:
Diffstat (limited to 'ext/wasm/common/testing.css')
-rw-r--r--ext/wasm/common/testing.css20
1 files changed, 19 insertions, 1 deletions
diff --git a/ext/wasm/common/testing.css b/ext/wasm/common/testing.css
index 09c570f48..e112fd0a8 100644
--- a/ext/wasm/common/testing.css
+++ b/ext/wasm/common/testing.css
@@ -1,3 +1,8 @@
+body {
+ display: flex;
+ flex-direction: column;
+ flex-wrap: wrap;
+}
textarea {
font-family: monospace;
}
@@ -29,4 +34,17 @@ span.labeled-input {
color: red;
background-color: yellow;
}
-#test-output { font-family: monospace }
+.warning { color: firebrick; }
+.input-wrapper { white-space: nowrap; }
+#test-output {
+ border: 1px inset;
+ padding: 0.25em;
+ /*max-height: 30em;*/
+ overflow: auto;
+ white-space: break-spaces;
+ display: flex; flex-direction: column;
+ font-family: monospace;
+}
+#test-output.reverse {
+ flex-direction: column-reverse;
+}