fix(pwa): try another time the fullscreen feature
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
"short_name": "StripStream",
|
||||
"description": "Votre bibliothèque numérique pour lire vos BD, mangas et comics préférés",
|
||||
"start_url": "/",
|
||||
"display": "standalone",
|
||||
"display": "fullscreen",
|
||||
"orientation": "portrait",
|
||||
"background_color": "#0F172A",
|
||||
"theme_color": "#4F46E5",
|
||||
|
||||
@@ -62,13 +62,15 @@ export default function RootLayout({ children }: { children: React.ReactNode })
|
||||
<head>
|
||||
<meta
|
||||
name="viewport"
|
||||
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover"
|
||||
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, viewport-fit=cover"
|
||||
/>
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
||||
<meta name="apple-touch-fullscreen" content="yes" />
|
||||
<meta name="apple-mobile-web-app-title" content="StripStream" />
|
||||
<meta name="mobile-web-app-capable" content="yes" />
|
||||
<meta name="theme-color" content="#4F46E5" />
|
||||
<meta name="theme-color" content="#4F46E5" media="(prefers-color-scheme: light)" />
|
||||
<meta name="theme-color" content="#0F172A" media="(prefers-color-scheme: dark)" />
|
||||
<meta name="msapplication-TileColor" content="#4F46E5" />
|
||||
<meta name="msapplication-tap-highlight" content="no" />
|
||||
<link
|
||||
|
||||
Reference in New Issue
Block a user