fix flash

This commit is contained in:
Paul Miller
2023-02-21 11:13:22 -06:00
parent 0393759239
commit b251663a0a
4 changed files with 25 additions and 26 deletions

View File

@@ -0,0 +1,9 @@
import { Outlet } from "react-router-dom";
export default function Layout() {
return (<div className="safe-top safe-left safe-right safe-bottom">
<div className="disable-scrollbars max-h-screen h-full overflow-y-scroll">
<Outlet />
</div>
</div >)
}