Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
new-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
603c4e8f
authored
May 26, 2025
by
Apple\Apple
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
馃悰
fix(headerbar): Fix the issue where the header disappears on mobile screen sizes.
parent
620a4d09
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
web/src/components/PageLayout.js
+3
-3
No files found.
web/src/components/PageLayout.js
View file @
603c4e8f
...
...
@@ -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 = () => {
<
/Header
>
<
Layout
style
=
{{
marginTop
:
styleState
.
isMobile
?
'0'
:
'56px'
,
height
:
styleState
.
isMobile
?
'auto'
:
'calc(100vh - 56px)'
,
marginTop
:
'56px'
,
height
:
'calc(100vh - 56px)'
,
overflow
:
styleState
.
isMobile
?
'visible'
:
'auto'
,
display
:
'flex'
,
flexDirection
:
'column'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment