fixed: 底部导航栏悬浮bug

This commit is contained in:
xxx 2024-01-09 09:32:46 +08:00
parent f71df2a461
commit 8a3bbd565b
2 changed files with 10 additions and 2 deletions

View File

@ -0,0 +1,7 @@
.playedu-app {
width: 100vw;
height: 100vh;
overflow-y: auto;
overflow-x: hidden;
position: relative;
}

View File

@ -2,15 +2,16 @@ import { Suspense } from "react";
import { Outlet } from "react-router-dom";
import LoadingPage from "../../loading";
import { TabBarFooter } from "../../../components";
import styles from "./index.module.scss";
const WithoutHeaderWithoutFooter = () => {
return (
<>
<div className={styles["playedu-app"]}>
<Suspense fallback={<LoadingPage />}>
<Outlet />
</Suspense>
<TabBarFooter></TabBarFooter>
</>
</div>
);
};