Hide overflow of public room description on spotlight dialog result (#8870)

This commit is contained in:
Suguru Hirahara 2022-06-19 09:51:24 +00:00 committed by GitHub
parent ee4484fa40
commit a434402b41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -283,14 +283,15 @@ limitations under the License.
}
}
.mx_SpotlightDialog_result_publicRoomDescription {
display: -webkit-box;
color: $secondary-content;
font-size: $font-12px;
white-space: normal;
word-wrap: break-word;
line-height: $font-20px;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
}
}