Type alias animate_pulse

animate_pulse: "animate-pulse"

Css

animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;@keyframes pulse {  0%, 100% {    opacity: 1;  }  50% {    opacity: .5;  }}

Description

You can refer to the official tailwind documentation

Description

You can refer to the typedoc

Since

Tailwind v3.2.7

Generated using TypeDoc