diff --git a/src/components/Auth/index.tsx b/src/components/Auth/index.tsx index 13644dc..c4354c3 100644 --- a/src/components/Auth/index.tsx +++ b/src/components/Auth/index.tsx @@ -52,7 +52,7 @@ export default function withAuth
( style={{ width: "100vw", height: "100vh", - backgroundColor: "#fff", + backgroundColor: "#FAFAFA", position: "fixed", top: 0, left: 0, @@ -69,7 +69,7 @@ export default function withAuth
(
style={{
width: "100vw",
height: "100vh",
- backgroundColor: "#fff",
+ backgroundColor: "#FAFAFA",
position: "fixed",
top: 0,
left: 0,
diff --git a/src/components/CustomNavbar/index.tsx b/src/components/CustomNavbar/index.tsx
index 858e5a0..1c01f28 100644
--- a/src/components/CustomNavbar/index.tsx
+++ b/src/components/CustomNavbar/index.tsx
@@ -18,7 +18,7 @@ const CustomNavbar = (props: IProps) => {
style={{
height: `${navBarHeight}px`,
paddingTop: `${statusBarHeight}px`,
- backgroundColor: backgroundColor || 'transparent'
+ backgroundColor: backgroundColor || '#fafafa'
}}
>
{children}
diff --git a/src/game_pages/detail/index.module.scss b/src/game_pages/detail/index.module.scss
index 6e730cc..6185373 100644
--- a/src/game_pages/detail/index.module.scss
+++ b/src/game_pages/detail/index.module.scss
@@ -1,7 +1,7 @@
.detail-page {
width: 100%;
height: 100%;
- background-color: #FAFAFA;
+ // background-color: #FAFAFA;
// padding-bottom: env(safe-area-inset-bottom);
.custom-navbar {
diff --git a/src/game_pages/list/index.tsx b/src/game_pages/list/index.tsx
index 26f595a..d6f15a2 100644
--- a/src/game_pages/list/index.tsx
+++ b/src/game_pages/list/index.tsx
@@ -363,6 +363,7 @@ const ListPage = () => {
return (
<>
+
{/* 自定义导航 */}