Last active
March 21, 2022 12:56
-
-
Save nextab/233ef04f538e3efbcfc1de532a69650b to your computer and use it in GitHub Desktop.
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 the "jumping" effect on mobile devices for Divi's Fullscreen Header Module */ | |
| /* #region max-width 479px */ | |
| @media only screen and (max-width: 479px) { | |
| /* #region Fixing jumping header on mobile devices */ | |
| .et_pb_fullwidth_header.et_pb_fullscreen { | |
| min-height: 100vh !important; | |
| padding-top: 0 !important; | |
| .et_pb_fullwidth_header_container { | |
| min-height: calc(100vh - 70px) !important; | |
| // width: 100%; | |
| } | |
| } | |
| /* #endregion */ | |
| } | |
| /* #endregion */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment