techstartucalgary / lifeline

A much needed lifeline to help students never miss a deadline!
https://lifeline.techstartucalgary.com
MIT License
4 stars 0 forks source link

Minor Issues: Safe Area #206

Open cloudyyoung opened 1 year ago

cloudyyoung commented 1 year ago

Adapt safe area concept on superview screens, eg iPhone X and models after, and similar android models.

https://developer.apple.com/design/human-interface-guidelines/foundations/layout/#platform-considerations

Specifically for now: The Export TAB.

tim-macphail commented 1 year ago

Screenshot from 2023-03-02 07-56-45

cloudyyoung commented 1 year ago

A guide to follow: https://dev.to/oncode/display-your-pwa-website-fullscreen-4776. Only need to concern pages in /app scope.

Please add the following to index.html and make sure all page contents are within safe area:

    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
    <meta name="mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">