Fix log container taller than viewport

This commit is contained in:
Michael Shamoon 2021-03-15 08:38:47 -07:00
parent 50bcd3daf1
commit e1254a053a
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
<div [ngbNavOutlet]="nav" class="mt-2"></div>
<div class="bg-dark p-3 mb-3 text-light text-monospace log-container">
<div class="bg-dark p-3 text-light text-monospace log-container">
<p
class="m-0 p-0 log-entry-{{getLogLevel(log)}}"
*ngFor="let log of logs">{{log}}</p>

View File

@ -17,7 +17,7 @@
.log-container {
overflow-y: scroll;
height: calc(100vh - 190px);
height: calc(100vh - 200px);
top: 70px;
p {