Skip to content

Instantly share code, notes, and snippets.

@sksar
Forked from sconstantinides/styles.css
Created June 7, 2023 15:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sksar/9144f17241b136e5459132a5bb806b21 to your computer and use it in GitHub Desktop.
Save sksar/9144f17241b136e5459132a5bb806b21 to your computer and use it in GitHub Desktop.
PWA media queries
/* Replace "standalone" with "fullscreen" depending on your manifest.json display mode */
@media (display-mode: standalone) {
/* All installed PWAs */
}
@media (max-width: 576px) and (display-mode: standalone) {
/* Installed PWAs on mobile devices */
@supports (-webkit-overflow-scrolling: touch) {
/* Installed PWAs on mobile Apple devices */
}
@supports not (-webkit-overflow-scrolling: touch) {
/* Installed PWAs on mobile non-Apple devices */
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment