Make long reports in the notification error log easier to read

This commit is contained in:
dgtlmoon
2022-04-08 14:12:42 +02:00
parent 34c83f0e7c
commit a440eece9e
4 changed files with 20 additions and 5 deletions

View File

@@ -31,7 +31,7 @@ a.github-link {
section.content {
padding-top: 5em;
padding-bottom: 5em;
padding-bottom: 1em;
flex-direction: column;
display: flex;
align-items: center;
@@ -185,6 +185,12 @@ body:after, body:before {
padding: 1rem;
border-radius: 5px; }
#notification-error-log {
border: 1px solid #ccc;
padding: 1rem;
border-radius: 5px;
overflow-wrap: break-word; }
#token-table.pure-table td, #token-table.pure-table th {
font-size: 80%; }
@@ -411,7 +417,9 @@ and also iPads specifically.
display: block; }
.edit-form {
min-width: 70%; }
min-width: 70%;
/* so it cant overflow */
max-width: 95%; }
.edit-form .box-wrap {
position: relative; }
.edit-form .inner {

View File

@@ -245,6 +245,12 @@ body:after, body:before {
border-radius: 5px;
}
#notification-error-log {
border: 1px solid #ccc;
padding: 1rem;
border-radius: 5px;
overflow-wrap: break-word;
}
#token-table {
&.pure-table td, &.pure-table th {
@@ -586,7 +592,8 @@ $form-edge-padding: 20px;
.edit-form {
min-width: 70%;
/* so it cant overflow */
max-width: 95%;
.box-wrap {
position: relative;
}