1
0
Fork 0
forked from Mirrors/gomuks

web/rightpanel: fix displayname overflow in user info

This commit is contained in:
Tulir Asokan 2025-03-11 19:26:47 +02:00
parent ede1c92906
commit 3041fb18e3

View file

@ -68,8 +68,6 @@ div.right-panel-content.widgets {
} }
div.right-panel-content.user { div.right-panel-content.user {
display: flex;
flex-direction: column;
padding: 1rem; padding: 1rem;
div.avatar-container { div.avatar-container {
@ -79,7 +77,6 @@ div.right-panel-content.user {
justify-content: center; justify-content: center;
align-items: center; align-items: center;
padding: 1rem; padding: 1rem;
flex-shrink: 0;
margin: 0 auto; margin: 0 auto;
> img { > img {
@ -105,6 +102,7 @@ div.right-panel-content.user {
-webkit-line-clamp: 4; -webkit-line-clamp: 4;
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
word-break: break-word; word-break: break-word;
overflow: hidden;
} }
div.userid, div.extended-profile, div.devices, div.user-moderation, div.mutual-rooms, div.errors { div.userid, div.extended-profile, div.devices, div.user-moderation, div.mutual-rooms, div.errors {