urasoft-live-support 1.1.27 → 1.1.29
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 +3 -3
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -443,7 +443,6 @@
|
|
|
443
443
|
gap: 12px;
|
|
444
444
|
max-width: 85%;
|
|
445
445
|
min-width: 0;
|
|
446
|
-
overflow: hidden;
|
|
447
446
|
animation: messageAppear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
448
447
|
}
|
|
449
448
|
|
|
@@ -505,7 +504,6 @@
|
|
|
505
504
|
flex-direction: column;
|
|
506
505
|
gap: 4px;
|
|
507
506
|
min-width: 0;
|
|
508
|
-
overflow: hidden;
|
|
509
507
|
}
|
|
510
508
|
|
|
511
509
|
.chat-message-text {
|
|
@@ -885,13 +883,14 @@
|
|
|
885
883
|
@media (max-width: 480px) {
|
|
886
884
|
:root {
|
|
887
885
|
--window-width: 100vw;
|
|
888
|
-
--window-height:
|
|
886
|
+
--window-height: 100dvh;
|
|
889
887
|
--button-size: clamp(3rem, 3.5rem * var(--chat-scale-factor), 4.5rem);
|
|
890
888
|
}
|
|
891
889
|
|
|
892
890
|
.chat-window {
|
|
893
891
|
width: 100vw;
|
|
894
892
|
height: 100vh;
|
|
893
|
+
height: 100dvh;
|
|
895
894
|
border-radius: 0;
|
|
896
895
|
max-width: none;
|
|
897
896
|
max-height: none;
|
|
@@ -1600,6 +1599,7 @@
|
|
|
1600
1599
|
.chat-widget.chat-widget-open .chat-window {
|
|
1601
1600
|
width: 100vw !important;
|
|
1602
1601
|
height: 100vh !important;
|
|
1602
|
+
height: 100dvh !important;
|
|
1603
1603
|
max-width: none !important;
|
|
1604
1604
|
max-height: none !important;
|
|
1605
1605
|
border-radius: 0 !important;
|
package/package.json
CHANGED