initial commit

This commit is contained in:
HeiaSamahi
2018-12-12 11:46:29 +01:00
commit eb12f3cb41
43 changed files with 25172 additions and 0 deletions
@@ -0,0 +1 @@
@import url("fadeAnimation.css");
@@ -0,0 +1,31 @@
.fade-enter {}
.fade-enter-active {
animation: fade-out 1s ease-out;
}
.fade-leave {}
.fade-leave-active {
animation: fade-out 1s ease-out;
}
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fade-out {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
+1
View File
@@ -0,0 +1 @@
@import url("defaultAnimations.css");