Add example transition animation

This commit is contained in:
Johannes Zellner
2023-02-27 00:33:07 +01:00
parent 680d31688f
commit f0ef663691
2 changed files with 17 additions and 2 deletions
+12 -1
View File
@@ -28,4 +28,15 @@ a:hover, a:focus {
#app {
height: 100%;
}
}
.fade-enter-active,
.fade-leave-active {
transition: all 0.2s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
transform: scale(0.95);
}