-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (37 loc) · 1.18 KB
/
Copy pathtailwind.config.js
File metadata and controls
37 lines (37 loc) · 1.18 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: "jit",
content: [
"./scripts/public/overview.html",
"./scripts/public/index.html",
"./scripts/public/**/*.{js,jsx,ts,tsx}",
"./scripts/public/**/*.{js,jsx,ts,tsx}",
"./pages/public/**/*.{js,ts,jsx,tsx}",
"./components/public/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
boxShadow: {
'right': '10px 0 5px -2px rgba(0, 0, 0, 0.1)',
},
colors: {
'custom-gray': '#252525'
},
keyframes: {
wiggle: {
'0%, 100%': { transform: 'rotate(0deg)' },
'10%, 90%': { transform: 'rotate(0.5deg)' },
'20%, 80%': { transform: 'rotate(-0.5deg)' },
'30%, 70%': { transform: 'rotate(0.4deg)' },
'40%, 60%': { transform: 'rotate(-0.4deg)' },
'50%': { transform: 'rotate(0deg)' }
}
},
animation: {
wiggle: 'wiggle 4s ease-in-out infinite',
},
},
},
variants: {},
plugins: [],
}