Add manifest.json, prevent pinch to zoom on mobile, make body dodge mobile keyboard and add partial light theme.

This commit is contained in:
天クマ 2026-07-17 23:21:57 -03:00
commit 0af3395ad7
5 changed files with 60 additions and 26 deletions

23
manifest.json Normal file
View file

@ -0,0 +1,23 @@
{
"name": "PANDORA chat",
"short_name": "PANDORA",
"theme_color": "#ffffff",
"background_color": "#102457",
"display": "standalone",
"orientation": "any",
"scope": "./",
"start_url": "./",
"description": "Internet messaging",
"icons": [
{
"src": "icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "icon-512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}