chore: limit trace-viewer minimum viewport (#29850)
https://github.com/microsoft/playwright/issues/29100
This commit is contained in:
parent
9ca895dea0
commit
84d3308969
|
|
@ -23,6 +23,7 @@
|
|||
cursor: text;
|
||||
user-select: none;
|
||||
margin-left: 10px;
|
||||
overflow-x: clip;
|
||||
}
|
||||
|
||||
.timeline-divider {
|
||||
|
|
|
|||
|
|
@ -122,3 +122,10 @@ body.dark-mode .drop-target {
|
|||
text-overflow: ellipsis;
|
||||
text-wrap: nowrap;
|
||||
}
|
||||
|
||||
/* Limit to a reasonable minimum viewport */
|
||||
html, body {
|
||||
min-width: 550px;
|
||||
min-height: 450px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue