ios css & pwa

This commit is contained in:
din9xtr
2026-01-17 07:10:45 +00:00
parent 5ffb2e7f97
commit dd67217be2
3 changed files with 47 additions and 4 deletions

View File

@@ -18,6 +18,10 @@ body {
padding: 1rem;
position: relative;
overflow-x: hidden;
padding-top: env(safe-area-inset-top);
padding-bottom: env(safe-area-inset-bottom);
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
}
header {

29
public/manifest.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "Cloud Control Panel",
"short_name": "Cloud",
"description": "Cloud storage management",
"start_url": "/",
"display": "standalone",
"background_color": "#0f172a",
"theme_color": "#0f172a",
"orientation": "portrait",
"scope": "/",
"icons": [
{
"src": "/apple-touch-icon.png",
"sizes": "180x180",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}