Skip to content

Instantly share code, notes, and snippets.

@vetrivelcsamy
Created October 26, 2019 05:55
Show Gist options
  • Save vetrivelcsamy/7269c02500c2bf333d8133bd2afbaf02 to your computer and use it in GitHub Desktop.
Save vetrivelcsamy/7269c02500c2bf333d8133bd2afbaf02 to your computer and use it in GitHub Desktop.
body {
background-image: linear-gradient(-225deg, #5d9fff 0%, #b8dcff 48%, #6bbbff 100%);
height: 100%;
margin: 0;
background-repeat: no-repeat;
background-attachment: fixed;
}
.example-enter {
opacity: 0.01;
}
.example-enter.example-enter-active {
opacity: 1;
transition: opacity 500ms ease-in;
}
.example-leave {
opacity: 1;
}
.example-leave.example-leave-active {
opacity: 0.01;
transition: opacity 100ms ease-in;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment