about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/styles/components/error_boundary.scss
blob: f9bf425f8023217a0c2677671f283ac8a9903b20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.error-boundary {
  h1 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 8px;
  }

  p {
    color: $primary-text-color;
    font-size: 15px;
    line-height: 20px;

    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;
    }
  }
}