Fix error boundary CSS

master
Thibaut Girka 2019-07-15 00:16:31 +02:00 committed by ThibG
parent 0baaee495f
commit e0bfa685c6
1 changed files with 17 additions and 19 deletions

View File

@ -1,4 +1,8 @@
.error-boundary { .error-boundary {
color: $primary-text-color;
font-size: 15px;
line-height: 20px;
h1 { h1 {
font-size: 26px; font-size: 26px;
line-height: 36px; line-height: 36px;
@ -6,27 +10,21 @@
margin-bottom: 8px; margin-bottom: 8px;
} }
p { a {
color: $primary-text-color; color: $primary-text-color;
font-size: 15px; text-decoration: underline;
line-height: 20px; }
a { ul {
color: $primary-text-color; list-style: disc;
text-decoration: underline; margin-left: 0;
} padding-left: 1em;
}
ul { textarea.web_app_crash-stacktrace {
list-style: disc; width: 100%;
margin-left: 0; resize: none;
padding-left: 1em; white-space: pre;
} font-family: $font-monospace, monospace;
textarea.web_app_crash-stacktrace {
width: 100%;
resize: none;
white-space: pre;
font-family: $font-monospace, monospace;
}
} }
} }