testing black-translucent option for status bar

This commit is contained in:
corgifist 2025-07-25 22:52:59 +03:00
parent f27cb4867e
commit b4dad36b89
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ const PWAHead = () => (
<>
<meta name="apple-mobile-web-app-title" content="ClipFusion" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-touch-fullscreen" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="theme-color" content="var(--background)" />

View File

@ -273,7 +273,7 @@ function SidebarTrigger({
}}
{...props}
>
{open ? <PanelLeftCloseIcon/> : <PanelLeftOpenIcon/>}
{open ? <PanelLeftOpenIcon/> : <PanelLeftCloseIcon/>}
<span className="sr-only">Toggle Sidebar</span>
</Button>
)