Fix log lines hidden on narrow screens

This commit is contained in:
Michael Shamoon 2021-03-11 16:03:17 -08:00
parent ccc39e0e55
commit 63b4ccacde
2 changed files with 7 additions and 5 deletions

View File

@ -14,5 +14,5 @@
<div class="bg-dark p-3 mb-3 text-light text-monospace log-container">
<p
class="m-0 p-0 log-entry-{{getLogLevel(log)}}"
*ngFor="let log of logs" style="white-space: pre;">{{log}}</p>
*ngFor="let log of logs">{{log}}</p>
</div>

View File

@ -16,9 +16,11 @@
}
.log-container {
overflow: scroll;
overflow-y: scroll;
height: calc(100vh - 190px);
top: 70px;
}
p {
white-space: pre-wrap;
}
}