tailwind.config.js 에서 정의할 수 있다.module.exports = { theme: { extend: { keyframes: { 'slide-up': { '0%': { transform: 'translateY(100%)', opacity: '0' }, '100%': { transform: 'translateY(0)', opacity: '1' }, }, }, animation: { 'slide-up': 'slide-up 0.5s ease-out forwards', }, }, }, plugins: [],};keyframes: slide-up 이라는 이름으로 새로운 애니메..