tailwind.config.js 842 Bytes
Newer Older
백승민's avatar
백승민 committed
1
2
3
4
5
6
7
// /** @type {import('tailwindcss').Config} */
// module.exports = {
//   content: ["./src/**/*.{html,js,jsx,ts,tsx}"],
//   theme: {
//     extend: {},
//   plugins: [],
// }};
Yoon, Daeki's avatar
Yoon, Daeki committed
8
9
10
11
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: ["./src/**/*.{html,js,jsx,ts,tsx}"],
  theme: {
백승민's avatar
백승민 committed
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
    extend: {
      keyframes: {
        slidetoleft: {
          "33.33%": { transform: "translateX(-100%)", color: "white" },
          "66.66%, 100%": { transform: "translateX(-100%)" },
        },
        slidetoright: {
          "33.33%": { transform: "translateX(0%)", color: "white" },
          "66.66%, 100%": { transform: "translateX(0%)" },
        },
      },
      animation: {
        slidetoleft: "slidetoleft 3s linear forwards",
        slidetoright: "slidetoright 3s linear forwards",
      },
    },
  },
Yoon, Daeki's avatar
Yoon, Daeki committed
29
  plugins: [],
백승민's avatar
백승민 committed
30
};