updating to make it more mobile optimized, making it a pwa, and testing it out on a phone

This commit is contained in:
itsamejms
2026-07-12 20:38:58 +01:00
parent 4a45e82abe
commit b8c955570e
16 changed files with 4311 additions and 136 deletions
+11
View File
@@ -5,4 +5,15 @@ body {
background-color: #0f0f0f;
color: #f5f5f5;
font-family: system-ui, -apple-system, sans-serif;
/* ponytail: mobile PWA full-bleed bg with content cleared from notch / home indicator. viewport-fit=cover lets bg extend under insets; app-shell pads content back in. */
overscroll-behavior: none;
-webkit-tap-highlight-color: transparent;
}
.app-shell {
padding:
max(0.75rem, env(safe-area-inset-top))
max(0.75rem, env(safe-area-inset-right))
max(0.75rem, env(safe-area-inset-bottom))
max(0.75rem, env(safe-area-inset-left));
}