Fixed issue #352

Fixed issue when allowed_ips have more than 1 IP Address, allow access will crash
This commit is contained in:
Donald Zou
2024-10-06 16:59:11 +08:00
parent 2cb06bb4bb
commit 71349f35e4
7 changed files with 119 additions and 97 deletions

View File

@@ -1051,17 +1051,17 @@ pre.index-alert {
.fade2-enter-active,
.fade2-leave-active {
transition: all 0.2s cubic-bezier(0.82, 0.58, 0.17, 0.9);
transition: all 0.3s cubic-bezier(0.82, 0.58, 0.17, 1.3);
}
.fade2-enter-from{
transform: translateY(30px);
filter: blur(3px);
transform: translateY(-30px);
/*filter: blur(3px);*/
opacity: 0;
}
.fade2-leave-to {
transform: translateY(-30px);
transform: translateY(30px);
filter: blur(3px);
opacity: 0;
}