Fix: IOS Input Zoom

config for theme consistency and iOS standalone mode
- Modified manifest.ts to ensure proper metadata

- Added display: standalone for iOS PWA behavior
This commit is contained in:
Chris Scott
2025-06-02 21:52:41 -04:00
parent 0b7989c3d3
commit 68c43ea372
5 changed files with 35 additions and 0 deletions

View File

@@ -11,3 +11,12 @@
display: none;
}
}
/* Add Fix for IOS to allow PWA and stop zooming on the page */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
select,
textarea,
input {
font-size: 16px !important;
}
}