-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UI front end looks bad in Safari #32
Comments
Fixes: |
I'll do an article about Weinre. |
1.1 Debug in Safari As we are both using Windows OS we were not able to debug in Safari. 1.2 Fix Webp with picture element Webp format is not supported in Safari yet, use picture element to fallback to JPEG <picture>
<source srcset="logo.webp" type="image/webp">
<img src="logo.png" alt="logo">
</picture> 1.3 Responsive Size Of Cards align-self: stretch; |
After reverting images to jpg/png format and add align-self: stretch, a new problem appears with the cards. It seems related to overflow: hidden. This can be related: |
|
The front end in Safari looks really bad, img cards are out of size, and cards are not responsive. The idea of having Global Goals as a PWA is to make it available in every browser.
Preview in Ipad:
Problem:
The text was updated successfully, but these errors were encountered: