-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (34 loc) · 862 Bytes
/
tailwind.config.js
File metadata and controls
34 lines (34 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
module.exports = {
mode: "jit",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: "media", // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
sans: ["Nanum Gothic", "sans-serif"],
},
keyframes: {
shimmer: {
"0%": { backgroundPosition: "-200% 0" },
"100%": { backgroundPosition: "200% 0" },
},
"pulse-ring": {
"0%": { transform: "scale(0.8)", opacity: "0.5" },
"50%": { transform: "scale(1)", opacity: "0.2" },
"100%": { transform: "scale(0.8)", opacity: "0.5" },
},
},
animation: {
shimmer: "shimmer 1.5s ease-in-out infinite",
"pulse-ring": "pulse-ring 2s ease-in-out infinite",
},
},
},
variants: {
extend: {},
},
plugins: [],
};