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
<style> | |
/* React Animation CSS */ | |
.fade-enter { | |
opacity: 0.01; | |
transition: opacity 1s ease-in; | |
} | |
.fade-enter.fade-enter-active { | |
opacity: 1; | |
} | |
.fade-leave { |