Last active
April 27, 2020 17:16
-
-
Save vfontjr/7d2d3dbaf1f0011346af4975beae7202 to your computer and use it in GitHub Desktop.
Source code for https://victorfont.com/preparing-genesis-sites-iphone-x/
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
/* add to body tag css */ | |
padding: constant(safe-area-inset-top) constant(safe-area-inset-right) constant(safe-area-inset-bottom) constant(safe-area-inset-left); |
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
<?php | |
add_filter( 'genesis_viewport_value', 'iphonex_viewport' ); | |
function iphonex_viewport( $content ){ | |
return "width=device-width, initial-scale=1, viewport-fit=cover"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment