From 21077d4696a4b65ed5af54d56ce7413cf0fe1764 Mon Sep 17 00:00:00 2001 From: "Apple\\Apple" Date: Mon, 26 May 2025 22:01:57 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(headerbar):=20Fix=20the=20is?= =?UTF-8?q?sue=20where=20the=20header=20disappears=20on=20mobile=20screen?= =?UTF-8?q?=20sizes.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/components/PageLayout.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/src/components/PageLayout.js b/web/src/components/PageLayout.js index da17f187..d9d5471e 100644 --- a/web/src/components/PageLayout.js +++ b/web/src/components/PageLayout.js @@ -84,7 +84,7 @@ const PageLayout = () => { padding: 0, height: 'auto', lineHeight: 'normal', - position: styleState.isMobile ? 'sticky' : 'fixed', + position: 'fixed', width: '100%', top: 0, zIndex: 100, @@ -95,8 +95,8 @@ const PageLayout = () => {