Skip to content

Instantly share code, notes, and snippets.

@westcoastdigital
Created September 16, 2019 03:22
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save westcoastdigital/a52a71afc6350f19d0cd401678c7f357 to your computer and use it in GitHub Desktop.
Save westcoastdigital/a52a71afc6350f19d0cd401678c7f357 to your computer and use it in GitHub Desktop.
Change the GeneratePress overlay menu slide in
#generate-slideout-menu {
left: -100vw;
top: -100vh;
opacity: 1;
border-bottom-right-radius: 100%;
-webkit-transition: left 0.5s ease-in, top 0.5s ease-in, border-radius 0.7s ease-in;
transition: left 0.5s ease-in, top 0.5s ease-in, border-radius 0.7s ease-in;
}
#generate-slideout-menu.is-open {
left: 0;
top: 0;
border-radius: 0;
}
#generate-slideout-menu .slideout-exit {
position: absolute !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment