Created
May 11, 2019 07:43
-
-
Save alshdavid/511f3bcd4ecb6b064a2826dff817ef60 to your computer and use it in GitHub Desktop.
This file contains 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
.router-view.fade { | |
opacity: 0; | |
transition: opacity .5s; | |
} | |
.router-view.fade-enter-first { | |
position: static; | |
transition-duration: 0s !important; | |
} | |
.router-view.fade-enter { | |
opacity: 1; | |
position: absolute; | |
top: 0; | |
left: 0; | |
right: 0; | |
} | |
.router-view.fade-enter-done { | |
opacity: 1; | |
} | |
.router-view.fade-exit { | |
opacity: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment