@codeleap/web 3.12.10 → 3.12.13
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
|
@@ -245,11 +245,11 @@ export const ModalContent = (
|
|
|
245
245
|
/>
|
|
246
246
|
|
|
247
247
|
<ModalArea css={variantStyles.innerWrapper}>
|
|
248
|
-
<Touchable
|
|
249
|
-
css={variantStyles.backdropPressable}
|
|
250
|
-
onPress={close}
|
|
251
|
-
debounce={1000}
|
|
252
|
-
{...backdropProps}
|
|
248
|
+
<Touchable
|
|
249
|
+
css={variantStyles.backdropPressable}
|
|
250
|
+
onPress={close}
|
|
251
|
+
debounce={1000}
|
|
252
|
+
{...backdropProps}
|
|
253
253
|
/>
|
|
254
254
|
<View
|
|
255
255
|
component='section'
|
|
@@ -331,6 +331,7 @@ export const Modal = (props) => {
|
|
|
331
331
|
document.body.style.overflow = 'hidden'
|
|
332
332
|
} else {
|
|
333
333
|
document.body.style.overflow = 'visible'
|
|
334
|
+
document.body.style.overflowX = 'hidden'
|
|
334
335
|
}
|
|
335
336
|
}, [visible])
|
|
336
337
|
|