Slide in top

global.css
.slide-in-top {
  animation: slide-in-top 0.6s ease-out both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

Based on @Ibelick

Designed with ♥ by @AdrianGerman