Skip to content

Commit

Permalink
fix(logs): fixed a styling issue causing stripped log lines' backgrou…
Browse files Browse the repository at this point in the history
…nd to be cut
  • Loading branch information
Will Moss committed Mar 29, 2024
1 parent eddb83b commit 6b3437f
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions app/client/assets/css/style.less
Original file line number Diff line number Diff line change
Expand Up @@ -324,12 +324,26 @@ html {
}
}

[data-tab='Logs'] .row.is-textual {
white-space: nowrap;
line-height: 185%;
[data-tab='Logs'] {
.tab-content {
display: grid;
grid-auto-rows: 30px;
}

&:nth-child(2n + 1) {
background: var(--color-terminal-log-row-alternative);
.row.is-textual {
white-space: nowrap;
line-height: 185%;
min-width: unset;

&:nth-child(2n + 1) {
background: var(--color-terminal-log-row-alternative);
}
}

&.no-wrap {
.row.is-textual {
white-space: wrap;
}
}
}
}
Expand Down

0 comments on commit 6b3437f

Please sign in to comment.