explore logs styling poc, WIP

This commit is contained in:
Torkel Ödegaard
2018-12-05 15:53:20 +01:00
committed by David Kaltschmidt
parent 8bac55ca70
commit c7d701c8fa
4 changed files with 51 additions and 32 deletions

View File

@@ -0,0 +1,23 @@
.logs-rows {
// display: grid;
// grid-column-gap: 1rem;
// grid-row-gap: 0.1rem;
// font-family: $font-family-monospace;
// font-size: 12px;
display: table;
}
.logs-row {
display: table-row;
> div {
display: table-cell;
}
}
.logs-row__time {
white-space: nowrap;
}
.logs-row__message {
}