Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View dilizarov's full-sized avatar

David Ilizarov dilizarov

View GitHub Profile
<style>
/* React Animation CSS */
.fade-enter {
opacity: 0.01;
transition: opacity 1s ease-in;
}
.fade-enter.fade-enter-active {
opacity: 1;
}
.fade-leave {