💫 (button) add animation

This commit is contained in:
2020-07-15 00:45:50 +02:00
parent 5a4acf39e8
commit 965ce9f1cb
7 changed files with 103 additions and 67 deletions

View File

@@ -49,3 +49,14 @@ button {
a {
color: white;
}
// transition
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.3s ease;
}
.fade-enter,
.fade-leave-to {
opacity: 0;
}