@ibti-tech/chatbot 0.9.8 → 0.9.9

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/index.mjs CHANGED
@@ -2834,7 +2834,7 @@ var Wrapper9 = styled10.div`
2834
2834
  // package.json
2835
2835
  var package_default = {
2836
2836
  name: "@ibti-tech/chatbot",
2837
- version: "0.9.8",
2837
+ version: "0.9.9",
2838
2838
  description: "Chatbot system developed to be embedded in any website",
2839
2839
  packageManager: "yarn@3.6.4",
2840
2840
  main: "./dist/index.mjs",
@@ -3213,9 +3213,9 @@ var Wrapper10 = styled11.div`
3213
3213
  padding-bottom: ${(props2) => props2.theme.spacing.components.xsmall};
3214
3214
 
3215
3215
  @media screen and (max-width: ${breakpoints3.tablet}px) {
3216
- /* Real mobile: pin between safe areas so header is never cut (notch/status bar). Fallback when env is 0 (no viewport-fit=cover). */
3217
- top: max(env(safe-area-inset-top, 0px), 20px) !important;
3218
- bottom: max(env(safe-area-inset-bottom, 0px), 8px) !important;
3216
+ /* Real mobile: start below browser UI (address bar) and safe area. S24/Android often have 0 safe-area; bar ~56px. */
3217
+ top: max(env(safe-area-inset-top, 0px), 56px) !important;
3218
+ bottom: env(safe-area-inset-bottom, 0px) !important;
3219
3219
  height: auto !important;
3220
3220
  min-height: 0;
3221
3221
  padding-top: 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibti-tech/chatbot",
3
- "version": "0.9.8",
3
+ "version": "0.9.9",
4
4
  "description": "Chatbot system developed to be embedded in any website",
5
5
  "packageManager": "yarn@3.6.4",
6
6
  "main": "./dist/index.mjs",