Expand vertically

global.css
.expand-vertically {
  animation: expand-vertically 0.6s ease-out both;
}

@keyframes expand-vertically {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}

Based on @Ibelick

Designed with ♥ by @AdrianGerman