bugfix: Output width in chrome (#345)

This commit is contained in:
James Read 2024-07-04 00:33:58 +01:00 committed by GitHub
parent 3d9cb621dd
commit a1adc2a85d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 12 additions and 1 deletions

View File

@ -223,6 +223,7 @@ div.entity h2 {
details {
display: inline-block;
flex-grow: 1;
}
details[open] {
@ -464,8 +465,18 @@ div.display {
font-size: small;
}
#execution-dialog-output {
display: flex;
flex-direction: row;
justify-content: start;
}
#execution-dialog-xterm {
overflow: scroll;
overflow: auto;
}
.xterm .xterm-viewport {
overflow-y: auto !important;
}
.padded-content {