
//////////////////////////////
// pulse.scss
// @src - https://github.com/daneden/animate.css/blob/master/source/attention_seekers/pulse.css
///////////////////////////////

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@if da-import("pulse") == true {
  @keyframes pulse {
    from {
      transform: scale3d(1, 1, 1);
    }

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

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