-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
38 lines (38 loc) · 888 Bytes
/
tailwind.config.ts
File metadata and controls
38 lines (38 loc) · 888 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
35
36
37
38
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"node_modules/preline/dist/*.js",
],
theme: {
extend: {
animation: {
'spin-slow': 'spin 2s linear infinite',
'spin-slow-reverse': 'spin-reverse 3s linear infinite',
fadeIn: "fadeIn 0.3s ease-in-out",
},
keyframes: {
'spin-reverse': {
to: { transform: 'rotate(-360deg)' },
},
fadeIn: {
"0%": { opacity: 0 },
"100%": { opacity: 1 },
},
},
},
},
plugins: [require("preline/plugin")],
extend: {
animation: {
fadeIn: "fadeIn 0.3s ease-in-out",
},
keyframes: {
fadeIn: {
"0%": { opacity: 0, transform: "scale(0.95)" },
"100%": { opacity: 1, transform: "scale(1)" },
},
},
},
};