mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 03:53:09 +02:00
28 lines
540 B
Stylus
28 lines
540 B
Stylus
.zoom-in-top-enter-active,
|
|
.zoom-in-top-leave-active {
|
|
opacity: 1;
|
|
transform: scaleY(1);
|
|
transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1), opacity 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
|
transform-origin: center top;
|
|
}
|
|
.zoom-in-top-enter,
|
|
.zoom-in-top-leave-active {
|
|
opacity: 0;
|
|
transform: scaleY(0);
|
|
}
|
|
|
|
.entranceFromTop {
|
|
animation-duration: 0.5s;
|
|
animation-name: entranceFromTop;
|
|
}
|
|
|
|
@keyframes entranceFromTop {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(-64px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|