webapp: Allow scrolling in horizontal direction in console window

This commit is contained in:
Thomas Basler
2025-04-18 20:26:13 +02:00
parent 3eaff7e45c
commit d51e79c90a

View File

@@ -239,6 +239,7 @@ export default defineComponent({
height: 500px; height: 500px;
max-height: 500px; max-height: 500px;
overflow-y: auto; overflow-y: auto;
overflow-x: auto;
padding: 8px; padding: 8px;
background: #111; background: #111;
border: 1px solid #333; border: 1px solid #333;
@@ -249,7 +250,7 @@ export default defineComponent({
.log-line { .log-line {
margin: 3px 0; margin: 3px 0;
white-space: pre-wrap; white-space: pre;
} }
.timestamp { .timestamp {