There was an error while loading. Please reload this page.
1 parent ca1a6c8 commit 87f04c1Copy full SHA for 87f04c1
1 file changed
dashboard/src/components/shared/ConsoleDisplayer.vue
@@ -362,6 +362,7 @@ export default {
362
border-radius: 8px;
363
height: 100%;
364
overflow-y: auto;
365
+ overflow-x: hidden;
366
padding: 16px;
367
}
368
@@ -379,7 +380,7 @@ export default {
379
380
381
:deep(.console-log-line--structured) {
382
display: grid;
- grid-template-columns: max-content 10ch minmax(0, 1fr);
383
+ grid-template-columns: max-content max-content minmax(0, 1fr);
384
column-gap: 8px;
385
align-items: start;
386
white-space: normal;
@@ -400,6 +401,12 @@ export default {
400
401
overflow-wrap: anywhere;
402
403
404
+@media (max-width: 768px) {
405
+ :deep(.console-log-line--structured) {
406
+ grid-template-columns: 1fr;
407
+ }
408
+}
409
+
410
:deep(.fade-in) {
411
animation: fadeIn 0.3s;
412
0 commit comments