Fix overflow issue in suggestion tiles

pull/21833/head
Michael Telatynski 2021-05-28 12:48:12 +01:00
parent f75fb3b349
commit 2c750fcb7a
1 changed files with 8 additions and 0 deletions

View File

@ -193,6 +193,7 @@ limitations under the License.
.mx_InviteDialog_roomTile_nameStack {
display: inline-block;
overflow: hidden;
}
.mx_InviteDialog_roomTile_name {
@ -208,6 +209,13 @@ limitations under the License.
margin-left: 7px;
}
.mx_InviteDialog_roomTile_name,
.mx_InviteDialog_roomTile_userId {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.mx_InviteDialog_roomTile_time {
text-align: right;
font-size: $font-12px;