Use SettingsItem in branding view

This commit is contained in:
Johannes Zellner
2025-04-07 17:05:57 +02:00
parent 71fc7c4ab6
commit 73a5fb1648
3 changed files with 142 additions and 57 deletions

View File

@@ -251,3 +251,16 @@ fieldset > * {
transform: translateX(20px);
opacity: 0;
}
.slide-up-enter-active,
.slide-up-leave-active {
transition: all 0.15s ease-in-out;
}
.slide-up-enter-from {
opacity: 0;
transform: translateY(30px);
}
.slide-up-leave-to {
opacity: 0;
transform: translateY(-30px);
}