Port activation to vuejs

This commit is contained in:
Johannes Zellner
2025-03-31 22:28:17 +02:00
parent e3b81d0b36
commit b2e1d4cc61
7 changed files with 229 additions and 165 deletions

View File

@@ -235,4 +235,19 @@ tr:hover .table-actions {
fieldset > * {
margin: 6px 0;
}
}
/* Animations */
.slide-fade-enter-active {
transition: all 0.2s ease-out;
}
.slide-fade-leave-active {
transition: all 0.2s cubic-bezier(1, 0.5, 0.8, 1);
}
.slide-fade-enter-from,
.slide-fade-leave-to {
transform: translateX(20px);
opacity: 0;
}