-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (31 loc) · 845 Bytes
/
tailwind.config.js
File metadata and controls
32 lines (31 loc) · 845 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
animation: {
'move-circle-1': 'moveCircle1 10s infinite',
'move-circle-2': 'moveCircle2 8s infinite',
'move-circle-3': 'moveCircle3 12s infinite',
},
keyframes: {
moveCircle1: {
'0%, 100%': { transform: 'translate(0, 0)' },
'50%': { transform: 'translate(20px, 20px)' },
},
moveCircle2: {
'0%, 100%': { transform: 'translate(0, 0)' },
'50%': { transform: 'translate(-30px, 15px)' },
},
moveCircle3: {
'0%, 100%': { transform: 'translate(0, 0)' },
'50%': { transform: 'translate(10px, -25px)' },
},
},
},
},
plugins: [],
}