Botão pulsante – Script Shopify

1 – Acesse o arquivo base.css do seu tema

2 – Adicione o código abaixo na ultima linha do arquivo

Script

/* INICIO CODIGO - BOTÃO PULSANTE */
.product-form__buttons {
  animation: scaler 0.4.5s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

@keyframes scaler { 
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}
/* FIM CODIGO - BOTÃO PULSANTE */
Esse tutorial foi util?