animation.ibelick
Horizontal Bounce
tailwind.config.ts
{
  "animation": {
    "horizontal-bounce": "horizontal-bounce 0.6s ease-in-out"
  },
  "horizontal-bounce": {
    "0%, 100%": {
      "transform": "translateX(0)"
    },
    "50%": {
      "transform": "translateX(20px)"
    }
  }
}