Wrap long space names (#9201)

This commit is contained in:
Michael Telatynski 2022-08-17 16:13:04 +01:00 committed by GitHub
parent 27a7263965
commit 0e43f3c015
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View file

@ -379,11 +379,16 @@ $activeBorderColor: $primary-content;
}
.mx_SpacePanel_contextMenu {
max-width: 360px;
.mx_SpacePanel_contextMenu_header {
margin: 12px 16px 12px;
font-weight: $font-semi-bold;
font-size: $font-15px;
line-height: $font-18px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.mx_SpacePanel_iconHome::before {

View file

@ -177,6 +177,10 @@ $SpaceRoomViewInnerWidth: 428px;
h1 {
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 100%;
}
}