global.css
.flip-out-y {
animation: flip-out-y 0.6s ease-out both;
}
@keyframes flip-out-y {
0% {
opacity: 1;
transform: rotateX(0deg);
}
100% {
opacity: 0;
transform: rotateX(90deg);
}
} Based on @Ibelick
Designed with ♥ by @AdrianGerman