ss-support-widget 1.0.6 → 1.0.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ss-support-widget",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Chatbot widget for customer support",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -106,7 +106,7 @@ export function ChatWidget({
106
106
  borderColor: "divider",
107
107
  background:
108
108
  "linear-gradient(135deg, rgba(25,118,210,.18), rgba(156,39,176,.14))",
109
- backdropFilter: "blur(10px)",
109
+ backdropFilter: isMobile ? "none" : "blur(10px)",
110
110
  }}
111
111
  >
112
112
  <Badge
@@ -343,6 +343,9 @@ export function ChatWidget({
343
343
 
344
344
  <Box
345
345
  sx={{
346
+ position: "sticky",
347
+ bottom: 0,
348
+ zIndex: 2,
346
349
  p: 1.25,
347
350
  borderTop: "1px solid",
348
351
  borderColor: "divider",