Skip to content

Instantly share code, notes, and snippets.

@Ekwuno
Created March 6, 2019 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ekwuno/228411942d57044525f1de203a5cd645 to your computer and use it in GitHub Desktop.
Save Ekwuno/228411942d57044525f1de203a5cd645 to your computer and use it in GitHub Desktop.
.list-transition-enter, .list-transition-appear {
/*We give the list the initial dimension of the list button*/
top: 0;
width: 120px;
max-height: 40px;
color: transparent;
background-color: #5a564c;
}
/* This is where we can add the transition*/
.list-transition-enter-active, .list-transition-appear-active {
top: 45px;
width: 200px;
max-height: 200px;
background-color: #9e8949;
transition: all 400ms;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment