Skip to content

Instantly share code, notes, and snippets.

@Okkido
Created September 9, 2020 18:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Okkido/5a54597a0c7b7dd8bf6c33bca117ba27 to your computer and use it in GitHub Desktop.
Save Okkido/5a54597a0c7b7dd8bf6c33bca117ba27 to your computer and use it in GitHub Desktop.
Fix 100vh height bug in Safari
body {
height: 100vh;
}
/* Avoid Chrome to see Safari hack */
@supports (-webkit-touch-callout: none) {
body {
/* The hack for Safari */
height: -webkit-fill-available;
}
}
@Okkido
Copy link
Author

Okkido commented Sep 9, 2020

PostCSS plugin here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment