Scale

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

@keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

Based on @Ibelick

Designed with ♥ by @AdrianGerman