Open danielhelmstedt opened 2 years ago
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
l take a look at this
Issue still persists with Organizr 2.1.2370 and iOS16
A couple HTML things going on here (iPhone 12/Safari 15, and as a PWA)
changing the options in
<meta name="apple-mobile-web-app-status-bar-style" content="black">
(black, black-transparent etc) doesn't seem to be changing the status bar color. It also doesn't seem to be respecting<meta content="viewport-fit=cover" name="viewport">
as this should fill the notch area with the page backgroundAlso, to recognise the device's system light/dark mode setting,
<meta name="theme-color" content="#xxxxxx">
should become<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#000000" media="(prefers-color-scheme: dark)">