Migrate more components to TS

This commit is contained in:
Dane Everitt 2018-12-30 15:31:41 -08:00
parent 085da72934
commit 2a0d649b2a
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
13 changed files with 320 additions and 328 deletions

View file

@ -50,3 +50,19 @@
.modal-leave-active .modal-container {
animation: opacity 250ms linear;
}
/**
* name="slide-fade" mode="out-in"
*/
.slide-fade-enter-active {
transition: all 250ms ease;
}
.slide-fade-leave-active {
transition: all 250ms cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.slide-fade-enter, .slide-fade-leave-to {
transform: translateX(10px);
opacity: 0;
}