-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtailwind.config.js
More file actions
28 lines (28 loc) · 787 Bytes
/
tailwind.config.js
File metadata and controls
28 lines (28 loc) · 787 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
/** @type {import('tailwindcss').Config} */
export default {
content: [`app/**/*.{js,ts,hbs,gjs,gts,html}`],
theme: {
extend: {
animation: {
wiggle: 'wiggle 0.5s ease-out',
progress: 'progress 1s infinite linear',
},
keyframes: {
wiggle: {
'0%, 100%': { transform: 'rotate(0deg)' },
'10%, 50%, 90%': { transform: 'rotate(-3deg)' },
'30%, 70%': { transform: 'rotate(3deg)' },
},
progress: {
'0%': { transform: ' translateX(0) scaleX(0)' },
'40%': { transform: 'translateX(0) scaleX(0.4)' },
'100%': { transform: 'translateX(100%) scaleX(0.5)' },
},
},
transformOrigin: {
'left-right': '0% 50%',
},
},
},
plugins: [],
};