@import './animate.scss'; 

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.05, 1.05);
  }

  to {
    transform: scale(1, 1);
  }
}

@mixin pulse($args...) {
  @include animate(pulse, $args...);
}
