tailwind.config.js 575 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
    extend: {
      keyframes: {
        wave: {
백승민's avatar
백승민 committed
8
          '0%': { left: '100%' },
백승민's avatar
백승민 committed
9
10
          '4%': { left: '0' },
          '33.33%': { left: '0' },
백승민's avatar
백승민 committed
11
12
13
14
15
          '37.33%': { left: '-100%' },
          '66.66%': { left: '-100%' },
          '70.66%': { left: '-200%' },
          '99.99%': { left: '-200%' },
          '100%': { left: '0%' },
백승민's avatar
백승민 committed
16
17
18
        }
      },
      animation: {
백승민's avatar
백승민 committed
19
        wave : 'wave 12s ease-in-out'
백승민's avatar
백승민 committed
20
21
      }
    },
Yoon, Daeki's avatar
Yoon, Daeki committed
22
23
24
  },
  plugins: [],
};