@pmate/chat-sdk 0.1.15 → 0.1.16
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.
|
@@ -236,15 +236,21 @@ function MobileInner(props) {
|
|
|
236
236
|
transition: `color ${tokens.motion.stateTransition}, transform ${tokens.motion.pressFeedback}`,
|
|
237
237
|
};
|
|
238
238
|
return (_jsxs("div", { style: {
|
|
239
|
+
boxSizing: "border-box",
|
|
239
240
|
position: "relative",
|
|
240
241
|
width: "100%",
|
|
241
242
|
maxWidth: "min(420px, calc(100vw - 16px))",
|
|
242
|
-
padding: 0,
|
|
243
|
+
padding: "0 0 calc(18px + max(18px, env(safe-area-inset-bottom, 0px)))",
|
|
243
244
|
background: "transparent",
|
|
244
245
|
borderRadius: tokens.radius.inputSurface,
|
|
245
246
|
border: 0,
|
|
246
247
|
boxShadow: "none",
|
|
247
248
|
overflow: "visible",
|
|
249
|
+
overscrollBehavior: "contain",
|
|
250
|
+
touchAction: "manipulation",
|
|
251
|
+
userSelect: "none",
|
|
252
|
+
WebkitUserSelect: "none",
|
|
253
|
+
WebkitTouchCallout: "none",
|
|
248
254
|
}, children: [isRecordingOverlayVisible ? (_jsxs("div", { style: {
|
|
249
255
|
position: "fixed",
|
|
250
256
|
left: "50%",
|