about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/styles/components/error_boundary.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/flavours/glitch/styles/components/error_boundary.scss')
-rw-r--r--app/javascript/flavours/glitch/styles/components/error_boundary.scss30
1 files changed, 30 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/styles/components/error_boundary.scss b/app/javascript/flavours/glitch/styles/components/error_boundary.scss
new file mode 100644
index 000000000..3176690e2
--- /dev/null
+++ b/app/javascript/flavours/glitch/styles/components/error_boundary.scss
@@ -0,0 +1,30 @@
+.error-boundary {
+  color: $primary-text-color;
+  font-size: 15px;
+  line-height: 20px;
+
+  h1 {
+    font-size: 26px;
+    line-height: 36px;
+    font-weight: 400;
+    margin-bottom: 8px;
+  }
+
+  a {
+    color: $primary-text-color;
+    text-decoration: underline;
+  }
+
+  ul {
+    list-style: disc;
+    margin-left: 0;
+    padding-left: 1em;
+  }
+
+  textarea.web_app_crash-stacktrace {
+    width: 100%;
+    resize: none;
+    white-space: pre;
+    font-family: $font-monospace, monospace;
+  }
+}