From 577cc7d04212c88a244a7880d075654fcb683d61 Mon Sep 17 00:00:00 2001 From: al Date: Tue, 6 Aug 2024 16:21:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=84=E7=90=86=E7=99=BB=E5=BD=95=E9=AA=8C?= =?UTF-8?q?=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/globals.css | 12 +++ app/layout.js | 144 +++++++++++++++++++++++++++++------ app/login/page.js | 11 ++- components/PostItem/index.js | 4 +- components/WithAuth/index.js | 43 +++++------ utils/auth.js | 6 +- utils/requireAPI.js | 8 +- 7 files changed, 168 insertions(+), 60 deletions(-) diff --git a/app/globals.css b/app/globals.css index 0d83d59..b9e4a21 100644 --- a/app/globals.css +++ b/app/globals.css @@ -3,6 +3,18 @@ @tailwind utilities; body{ color:#fff; + padding-bottom: constant(safe-area-inset-bottom); + padding-bottom: env(safe-area-inset-bottom); +} +footer{ + /* Fallback for non-iOS devices */ + bottom: 0; + + /* iOS 11.0+ */ + bottom: constant(safe-area-inset-bottom); + + /* iOS 11.2+ */ + bottom: env(safe-area-inset-bottom); } /* :root { --foreground-rgb: 0, 0, 0; diff --git a/app/layout.js b/app/layout.js index 5fb783f..e6b4f5a 100644 --- a/app/layout.js +++ b/app/layout.js @@ -46,7 +46,10 @@ export default function RootLayout({ children }) { type="image/x-icon" > - + {/* */} */} - + {/* */} {/* */} @@ -73,34 +76,125 @@ export default function RootLayout({ children }) { name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> - {/* */} - {/* */} - {/* */} - {/* */} - - {/* */} - - {/* */} - - {/* */} - - {/* */} - - - - - - - - - + {/* */} + {/* */} + {/* */} + {/* */} + + {/* */} + + {/* */} + + {/* */} + + {/* */} + + + + + + + + +
{withAuth({children})} {/* {children} */}
-