@realtimexsco/live-chat 1.4.9 → 1.4.10
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/firebase-messaging-sw.js +312 -71
- package/dist/index.cjs +820 -633
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +8 -3
- package/dist/index.d.ts +8 -3
- package/dist/index.mjs +814 -629
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +11 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -795,3 +795,14 @@
|
|
|
795
795
|
color-mix(in srgb, var(--chat-border) 55%, transparent) 100%
|
|
796
796
|
);
|
|
797
797
|
}
|
|
798
|
+
|
|
799
|
+
/* Foreground push toasts — keep compact cards, never full-width bars */
|
|
800
|
+
.realtimex-push-toaster {
|
|
801
|
+
width: auto !important;
|
|
802
|
+
max-width: none !important;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
.realtimex-push-toaster > div {
|
|
806
|
+
width: auto !important;
|
|
807
|
+
max-width: none !important;
|
|
808
|
+
}
|