1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix LogList overflow (#7178)

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2023-02-17 13:13:00 +03:00 committed by GitHub
parent 4c03876448
commit f0b5b424b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,10 +7,6 @@
--overlay-bg: #8cc474b8; --overlay-bg: #8cc474b8;
--overlay-active-bg: orange; --overlay-active-bg: orange;
// fix for `this.logsElement.scrollTop = this.logsElement.scrollHeight`
// `overflow: overlay` don't allow scroll to the last line
overflow: auto;
position: relative; position: relative;
color: var(--logsForeground); color: var(--logsForeground);
background: var(--logsBackground); background: var(--logsBackground);
@ -21,6 +17,7 @@
.list { .list {
overflow-x: scroll!important; overflow-x: scroll!important;
overflow-y: auto!important;
.LogRow { .LogRow {
padding: 2px 16px; padding: 2px 16px;