1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

fixed scroll

This commit is contained in:
Fedor Katurov 2020-11-20 18:44:15 +07:00
parent 17048f175c
commit 29a99e6f2c
3 changed files with 10 additions and 9 deletions

View file

@ -1,8 +1,8 @@
import React, { FC, MouseEventHandler, ReactElement, useEffect, useRef, } from 'react';
import styles from './styles.module.scss';
import { disableBodyScroll, enableBodyScroll } from 'body-scroll-lock';
import { Icon } from '~/components/input/Icon';
import { LoaderCircle } from '~/components/input/LoaderCircle';
import React, { FC, MouseEventHandler, ReactElement, useEffect, useRef } from "react";
import styles from "./styles.module.scss";
import { clearAllBodyScrollLocks, disableBodyScroll } from "body-scroll-lock";
import { Icon } from "~/components/input/Icon";
import { LoaderCircle } from "~/components/input/LoaderCircle";
interface IProps {
children: React.ReactChild;
@ -36,7 +36,7 @@ const BetterScrollDialog: FC<IProps> = ({
useEffect(() => {
disableBodyScroll(ref.current, { reserveScrollBarGap: true });
return () => enableBodyScroll(ref.current);
return () => clearAllBodyScrollLocks();
}, [ref]);
return (