mastodon/app/javascript/flavours/glitch/styles/components/error_boundary.scss

31 lines
489 B
SCSS
Raw Normal View History

.error-boundary {
2019-07-15 00:16:31 +02:00
color: $primary-text-color;
font-size: 15px;
line-height: 20px;
h1 {
font-size: 26px;
line-height: 36px;
font-weight: 400;
margin-bottom: 8px;
}
2019-07-15 00:16:31 +02:00
a {
color: $primary-text-color;
2019-07-15 00:16:31 +02:00
text-decoration: underline;
}
2019-07-15 00:16:31 +02:00
ul {
list-style: disc;
margin-left: 0;
padding-left: 1em;
}
2019-07-15 00:16:31 +02:00
textarea.web_app_crash-stacktrace {
width: 100%;
resize: none;
white-space: pre;
font-family: $font-monospace, monospace;
}
}