Skip to content

Commit b60b634

Browse files
fix scroll bug in safari
1 parent d86796a commit b60b634

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Components/common.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export function LoadingBackdrop() {
1818
const loading = navigation.state !== 'idle';
1919
// const loading = navigation.state === 'loading';
2020
return (
21-
<Backdrop open={loading} sx={{zIndex: 99999}} transitionDuration={1000}>
21+
<Backdrop open={loading} sx={{zIndex: 99999}} transitionDuration={1000} style={{pointerEvents: "none"}} >
2222
<CircularProgress color="inherit"/>
2323
</Backdrop>
2424
)

0 commit comments

Comments
 (0)