We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffec079 commit 597258aCopy full SHA for 597258a
1 file changed
src/components/Atomic/Modal/Modal.tsx
@@ -68,10 +68,14 @@ export const Modal: FC<Props> = memo((props) => {
68
if (appRoot && show) {
69
// @ts-ignore
70
appRoot.style.filter = `blur(${show ? 6 : 0}px)`
71
+ // @ts-ignore
72
+ appRoot.style.overflow = `hidden`
73
74
return () => {
75
76
appRoot.style.filter = `none`
77
78
+ appRoot.style.overflow = 'unset'
79
}
80
81
}, [show, appRoot])
0 commit comments