Spaces:
Running
Running
Commit ·
50003e3
1
Parent(s): 934b55c
fix: PWA status bar & theming — black-translucent + dark bg match
Browse files- apple-mobile-web-app-status-bar-style: black-translucent
- theme-color/background_color → #1a1a2e (dark theme)
- body safe-area-inset padding for notch/status bar
- body bg-color to #1a1a2e for seamless PWA splash
webapp/tipitaka-web/index.html
CHANGED
|
@@ -11,13 +11,13 @@
|
|
| 11 |
|
| 12 |
<!-- iOS PWA / Safari -->
|
| 13 |
<meta name="apple-mobile-web-app-capable" content="yes" />
|
| 14 |
-
<meta name="apple-mobile-web-app-status-bar-style" content="
|
| 15 |
<meta name="apple-mobile-web-app-title" content="Tipitaka มจร." />
|
| 16 |
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
| 17 |
|
| 18 |
-
<!-- Theme color -->
|
| 19 |
-
<meta name="theme-color" content="#
|
| 20 |
-
<meta name="msapplication-TileColor" content="#
|
| 21 |
|
| 22 |
<link rel="preconnect" href="https://fonts.googleapis.com">
|
| 23 |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
| 11 |
|
| 12 |
<!-- iOS PWA / Safari -->
|
| 13 |
<meta name="apple-mobile-web-app-capable" content="yes" />
|
| 14 |
+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
| 15 |
<meta name="apple-mobile-web-app-title" content="Tipitaka มจร." />
|
| 16 |
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
| 17 |
|
| 18 |
+
<!-- Theme color — dark theme (#1a1a2e) for seamless PWA status bar on Android/iOS -->
|
| 19 |
+
<meta name="theme-color" content="#1a1a2e" />
|
| 20 |
+
<meta name="msapplication-TileColor" content="#1a1a2e" />
|
| 21 |
|
| 22 |
<link rel="preconnect" href="https://fonts.googleapis.com">
|
| 23 |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
webapp/tipitaka-web/public/manifest.json
CHANGED
|
@@ -4,8 +4,8 @@
|
|
| 4 |
"description": "พระไตรปิฎกฉบับมหาวิทยาลัยมหาจุฬาลงกรณราชวิทยาลัย — Tipitaka MCU Reader",
|
| 5 |
"start_url": "/",
|
| 6 |
"display": "standalone",
|
| 7 |
-
"background_color": "#
|
| 8 |
-
"theme_color": "#
|
| 9 |
"orientation": "any",
|
| 10 |
"icons": [
|
| 11 |
{
|
|
|
|
| 4 |
"description": "พระไตรปิฎกฉบับมหาวิทยาลัยมหาจุฬาลงกรณราชวิทยาลัย — Tipitaka MCU Reader",
|
| 5 |
"start_url": "/",
|
| 6 |
"display": "standalone",
|
| 7 |
+
"background_color": "#1a1a2e",
|
| 8 |
+
"theme_color": "#1a1a2e",
|
| 9 |
"orientation": "any",
|
| 10 |
"icons": [
|
| 11 |
{
|
webapp/tipitaka-web/src/index.css
CHANGED
|
@@ -29,6 +29,13 @@ body {
|
|
| 29 |
display: flex;
|
| 30 |
min-width: 320px;
|
| 31 |
min-height: 100vh;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
}
|
| 33 |
|
| 34 |
#root {
|
|
|
|
| 29 |
display: flex;
|
| 30 |
min-width: 320px;
|
| 31 |
min-height: 100vh;
|
| 32 |
+
/* Safe area padding for PWA notch/status bar (iOS black-translucent) */
|
| 33 |
+
padding-top: env(safe-area-inset-top);
|
| 34 |
+
padding-bottom: env(safe-area-inset-bottom);
|
| 35 |
+
padding-left: env(safe-area-inset-left);
|
| 36 |
+
padding-right: env(safe-area-inset-right);
|
| 37 |
+
/* Default bg matches dark theme — seamless PWA splash/status bar */
|
| 38 |
+
background-color: #1a1a2e;
|
| 39 |
}
|
| 40 |
|
| 41 |
#root {
|