Some adjustment on map

This commit is contained in:
Donald Zou
2024-10-02 18:01:20 +08:00
parent ff0147bebb
commit 4905d61a1a
4 changed files with 98 additions and 34 deletions

View File

@@ -1166,3 +1166,24 @@ pre.index-alert {
.messageCentre{
z-index: 9999;
}
.slide-move, /* apply transition to moving elements */
.slide-enter-active,
.slide-leave-active {
transition: all 0.4s cubic-bezier(0.82, 0.58, 0.17, 0.9);
}
.slide-leave-active{
position: absolute;
width: 100%;
}
.slide-enter-from{
opacity: 0;
transform: translateX(-50px) !important;
}
.slide-leave-to {
opacity: 0;
transform: translateX(50px) !important;
}