Skip to content

Commit

Permalink
Fix deprecated styles
Browse files Browse the repository at this point in the history
  • Loading branch information
ofabricio committed Apr 6, 2021
1 parent 485363b commit 958917c
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@
display: grid;
grid-template-columns: .6fr 1fr 1fr;
grid-template-rows: 1fr;
grid-gap: .5rem;
gap: .5rem;
}

.list,
.req,
.res {
display: grid;
grid-template-rows: auto 1fr;
grid-gap: .5rem;
gap: .5rem;
}

body {
Expand Down Expand Up @@ -107,14 +107,14 @@
.list-inner {
display: grid;
grid-template-rows: auto;
grid-gap: .5rem;
gap: .5rem;
align-content: start;
}

.list-item {
display: grid;
grid-template-columns: auto 1fr auto auto;
grid-gap: .5rem;
gap: .5rem;
font-size: 1.2em;
padding: 1rem;
background: var(--list-item-bg);
Expand Down Expand Up @@ -187,8 +187,7 @@
}

pre {
word-break: normal;
word-wrap: break-word;
word-break: break-all;
white-space: pre-wrap;
padding: 1rem;
font-family: inherit;
Expand Down Expand Up @@ -216,7 +215,7 @@
.controls {
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-gap: .5rem;
gap: .5rem;
justify-content: start;
}

Expand Down

0 comments on commit 958917c

Please sign in to comment.