Pulsing

global.css
.pulsing {
  animation: pulsing 1s ease-in-out both;
}

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

Based on @Ibelick

Designed with ♥ by @AdrianGerman