Add some colorshift blob animation to dns setup

This commit is contained in:
Johannes Zellner
2025-08-17 17:22:50 +02:00
parent 20fa49f8e4
commit e1a7056ef8
4 changed files with 56 additions and 11 deletions
+14
View File
@@ -295,3 +295,17 @@ fieldset > * {
opacity: 0;
transform: translateY(-30px);
}
.fade-scale-enter-active {
transition: all 0.2s ease-out;
}
.fade-scale-leave-active {
transition: all 0.2s cubic-bezier(1, 0.5, 0.8, 1);
}
.fade-scale-enter-from,
.fade-scale-leave-to {
transform: scale(0.95);
opacity: 0;
}