fix: fixed message text wraping

This commit is contained in:
Lukian 2025-04-09 15:50:36 +02:00
parent 4045681913
commit 2795d4686e
2 changed files with 24 additions and 11 deletions

View file

@ -3,3 +3,14 @@
border: 1px solid #270722;
padding: 10px;
}
.message-content {
word-break: break-word;
overflow-wrap: break-word;
display: -webkit-box;
line-clamp: 10;
-webkit-line-clamp: 10;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}