tailwind.config.js 458 Bytes
Newer Older
Yoon, Daeki's avatar
Yoon, Daeki committed
1
2
3
4
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: ["./src/**/*.{html,js,jsx,ts,tsx}"],
  theme: {
백승민's avatar
백승민 committed
5
6
7
8
9
10
11
12
13
14
15
16
17
18
    extend: {
      keyframes: {
        wave: {
          '0%': { left: '100' },
          '4%': { left: '0' },
          '33.33%': { left: '0' },
          '37.33%': { left: '-100' },
          '100%': { left: '-100' },
        }
      },
      animation: {
        wave : 'wave 10s ease-in-out'
      }
    },
Yoon, Daeki's avatar
Yoon, Daeki committed
19
20
21
  },
  plugins: [],
};