feature(Dashboard Transitions): uses Vue's built-in Transition component to add transitions to the widget config elements

This commit is contained in:
SimonGschnell
2024-11-29 13:23:51 +01:00
parent 278e5d8abd
commit 1336860ecd
5 changed files with 75 additions and 31 deletions
+10
View File
@@ -555,4 +555,14 @@ html {
.v-enter-from,
.v-leave-to {
opacity: 0;
}
.height-enter-active,
.height-leave-active {
transition: height 0.3s ease-out;
}
.height-enter-from,
.height-leave-to {
height: 0px;
}