~cytrogen/masto-fe

ref: cf9affdeac275cd4057dc57c3b16bf4fa5e9405a masto-fe/app/javascript/flavours/glitch/styles/components/error_boundary.scss -rw-r--r-- 505 bytes
cf9affde — Plastikmensch Apply padding to all notifications in notif-cleaning mode (#2325) 2 years ago
                                                                                
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
.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-inline-start: 0;
    padding-inline-start: 1em;
  }

  textarea.web_app_crash-stacktrace {
    width: 100%;
    resize: none;
    white-space: pre;
    font-family: $font-monospace, monospace;
  }
}