update css to support truncating headers and filling cell (#354)

This commit is contained in:
Scott Bishel 2021-04-28 07:21:30 -06:00 committed by GitHub
parent cc00ba5611
commit 2e143b63b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -69,6 +69,7 @@
.octo-propertyvalue {
text-align: left;
white-space: nowrap;
width: inherit;
}
}
@ -110,4 +111,16 @@
}
}
}
.MenuWrapper {
width: 100%;
max-width: calc(100% - 5px);
.Label {
width: 100%;
display: inline-block;
text-overflow: ellipsis;
overflow: hidden;
}
}
}