Last active
January 1, 2021 06:37
-
-
Save wplit/5b82288eeac02d48b60dea89f27c6723 to your computer and use it in GitHub Desktop.
megamenu inside sticky header, scrollable
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
| .oxy-sticky-header-active .oxy-mega-menu { | |
| background: none!important; | |
| } | |
| .oxy-sticky-header-active .oxy-mega-dropdown { | |
| background-color: var(--megamenu-responsive-background); | |
| } | |
| @media (max-width: 991px) { /* Change to screen width of your mobile menu */ | |
| .oxy-sticky-header-active .oxy-mega-menu { | |
| height: calc(100vh - 72px); /* Change 72px to height of sticky header */ | |
| overflow-y: auto; | |
| } | |
| .oxy-sticky-header-active .oxy-mega-menu_mobile .oxy-mega-dropdown { | |
| height: auto; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment