urasoft-live-support 1.1.26 → 1.1.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/styles.css +4 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -442,6 +442,7 @@
|
|
|
442
442
|
display: flex;
|
|
443
443
|
gap: 12px;
|
|
444
444
|
max-width: 85%;
|
|
445
|
+
min-width: 0;
|
|
445
446
|
animation: messageAppear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
446
447
|
}
|
|
447
448
|
|
|
@@ -502,6 +503,7 @@
|
|
|
502
503
|
display: flex;
|
|
503
504
|
flex-direction: column;
|
|
504
505
|
gap: 4px;
|
|
506
|
+
min-width: 0;
|
|
505
507
|
}
|
|
506
508
|
|
|
507
509
|
.chat-message-text {
|
|
@@ -510,6 +512,8 @@
|
|
|
510
512
|
font-size: 14px;
|
|
511
513
|
line-height: 1.5;
|
|
512
514
|
word-wrap: break-word;
|
|
515
|
+
word-break: break-word;
|
|
516
|
+
overflow-wrap: break-word;
|
|
513
517
|
}
|
|
514
518
|
|
|
515
519
|
.chat-message-user .chat-message-text {
|
package/package.json
CHANGED