mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix log lines hidden on narrow screens
This commit is contained in:
parent
ccc39e0e55
commit
63b4ccacde
@ -14,5 +14,5 @@
|
|||||||
<div class="bg-dark p-3 mb-3 text-light text-monospace log-container">
|
<div class="bg-dark p-3 mb-3 text-light text-monospace log-container">
|
||||||
<p
|
<p
|
||||||
class="m-0 p-0 log-entry-{{getLogLevel(log)}}"
|
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>
|
</div>
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.log-container {
|
.log-container {
|
||||||
|
overflow-y: scroll;
|
||||||
overflow: scroll;
|
|
||||||
|
|
||||||
height: calc(100vh - 190px);
|
height: calc(100vh - 190px);
|
||||||
top: 70px;
|
top: 70px;
|
||||||
}
|
|
||||||
|
p {
|
||||||
|
white-space: pre-wrap;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user