chore: limit trace-viewer minimum viewport

This commit is contained in:
Max Schmitt 2024-03-07 22:26:55 +01:00
parent 591d327eac
commit d920e9c2a9
2 changed files with 7 additions and 0 deletions

View file

@ -23,6 +23,7 @@
cursor: text;
user-select: none;
margin-left: 10px;
overflow: clip;
}
.timeline-divider {

View file

@ -122,3 +122,9 @@ body.dark-mode .drop-target {
text-overflow: ellipsis;
text-wrap: nowrap;
}
html, body {
min-width: 550px;
min-height: 450px;
overflow: auto;
}