Skip to content

Instantly share code, notes, and snippets.

View zenolahaye's full-sized avatar

Zeno zenolahaye

  • The Netherlands
View GitHub Profile
@zenolahaye
zenolahaye / ios_vh_fix.css
Last active April 15, 2021 03:17
CSS Fix for iOS vh-unit Bug
/* fix iOS bug not displaying 100vh correctly */
/* Ipad Pro - Landscape-breakpoint */
@media only screen and (min-device-width : 1024px) and (max-device-width : 1024px) and (min-device-height : 1366px) and (max-device-height : 1366px) and (min-width: 1366px) and (max-width: 1366px) {
.fullheight {
height: 1024px;
}
}
/* Ipad Pro - Portrait-breakpoint */