animation.ibelick
Bounce
tailwind.config.ts
{
  "animation": {
    "bounce": "bounce 1s ease-in-out"
  },
  "bounce": {
    "0%": {
      "transform": "translateY(0)"
    },
    "50%": {
      "transform": "translateY(-10px)"
    },
    "100%": {
      "transform": "translateY(0)"
    }
  }
}