Use a diff type of blur one that does not flicker

This commit is contained in:
Josh Perez 2020-10-12 14:26:24 -04:00 committed by Josh Perez
parent e5fae1a346
commit fb7c1e9030
4 changed files with 24 additions and 19 deletions

View file

@ -27,10 +27,9 @@ export const CallBackgroundBlur = ({
};
return (
<>
<div className="module-calling__background" {...backgroundProps} />
<div className="module-calling__background--blur" />
<div className="module-calling__background">
<div className="module-calling__background--blur" {...backgroundProps} />
{children}
</>
</div>
);
};