Created
November 2, 2023 20:18
-
-
Save MogulChris/e65f8d9b2a434984e471838ea10c84cf to your computer and use it in GitHub Desktop.
Elementor new menu widget - mobile dropdown slide-in effect
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
@media screen and (max-width:767px){ | |
body .elementor-widget-n-menu .e-n-menu[data-layout=dropdown] .e-n-menu-toggle[aria-expanded=false]+.e-n-menu-wrapper { | |
left:100vw; | |
transition:left 0.3s ease-in-out; | |
display:flex; | |
max-height:unset; | |
} | |
body .elementor-widget-n-menu .e-n-menu[data-layout=dropdown] .e-n-menu-toggle[aria-expanded=true]+.e-n-menu-wrapper { | |
left:-40px; | |
transition:left 0.3s ease-in-out; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment