fix(trace): title should not wrap over to the timeline (#28496)

This commit is contained in:
Dmitry Gozman 2023-12-05 09:21:51 -08:00 committed by GitHub
parent c8bc79655f
commit c7018951e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -107,13 +107,18 @@ body.dark-mode .drop-target {
height: 32px;
width: 32px;
pointer-events: none;
flex: none;
}
.workbench-loader .product {
font-weight: 600;
margin-left: 16px;
flex: none;
}
.workbench-loader .header .title {
margin-left: 16px;
overflow: hidden;
text-overflow: ellipsis;
text-wrap: nowrap;
}