Skip to content

Instantly share code, notes, and snippets.

@MogulChris
Created November 2, 2023 20:18
Show Gist options
  • Save MogulChris/e65f8d9b2a434984e471838ea10c84cf to your computer and use it in GitHub Desktop.
Save MogulChris/e65f8d9b2a434984e471838ea10c84cf to your computer and use it in GitHub Desktop.
Elementor new menu widget - mobile dropdown slide-in effect
@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