Code Monkey home page Code Monkey logo

Comments (3)

svilenmarkov avatar svilenmarkov commented on August 19, 2024

Hey, thanks for reporting this!

That's quite odd because there is some CSS in place that should account for the safe area at the top and bottom. I'm wondering if it's not working because of the display-mode: standalone requirement. I don't have an iPhone so I can't really play around and see what works and what doesn't.

On iOS, you are able to save the page on the home screen.

Do you know whether this turns it into a PWA or just a shortcut to the page without the browser UI?

from glance.

adrian-goe avatar adrian-goe commented on August 19, 2024

hi @svilenmarkov

Do you know whether this turns it into a PWA or just a shortcut to the page without the browser UI?

I don't know how to check if its saved as PWA or just a Website. As there is an manifest.json I would assume, it is correctly saved as a PWA.

I started the code from you locally in dev mode ans saved this on my phone aswell. It looked better, but scrolling wise, the text still moves behind the time. But the initial view is correct. I did not change anything on my deployed instance.

Let me know, if I can help further or test some things.

from glance.

svilenmarkov avatar svilenmarkov commented on August 19, 2024

Hey @adrian-goe, could you please try adding this custom CSS using the custom-css-file property:

@media (display-mode: standalone) {
    .widget-header {
        color: var(--color-negative);
    }
}

body::before {
    content: '';
    height: env(safe-area-inset-top);
    display: block;
    background-color: var(--color-primary);
}

@media (max-width: 1190px) and (display-mode: standalone) {
    .widget::after {
      content: '';
      height: var(--safe-area-inset-bottom);
      display: block;
      background: var(--color-negative);
    }
}

If display-mode: standalone works then the widget titles should be red.

If env(safe-area-inset-top) works then the top of the page (or your status bar) should have a yellow background.

If the previous two as well as env with a default value work then there should be a red block at the bottom of every widget.

You can remove the CSS after that. This should give me some idea about what might not be working. If all 3 of the above work then I'll have to think of something else.

from glance.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.