This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* fix iOS bug not displaying 100vh correctly */ | |
/* iPad Pro */ | |
@media only screen and (min-device-width : 1024px) and (max-device-width : 1366px) and (orientation : landscape) { | |
.fullheight { | |
height: 1024px; | |
} | |
} | |
@media only screen and (min-device-width : 1024px) and (max-device-width : 1366px) and (orientation : portrait) { | |
.fullheight { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.element { | |
position: relative; | |
top: 50%; | |
transform: translateY(-50%); | |
} |