-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (41 loc) · 1003 Bytes
/
tailwind.config.js
File metadata and controls
42 lines (41 loc) · 1003 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
39
40
41
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{html,js,ts,tsx,css,scss}",
],
theme: {
extend: {
keyframes: {
fadeInUp: {
'0%': {
opacity: '0',
transform: 'translateY(10px)'
},
'100%': {
opacity: '1',
transform: 'translateY(0)'
}
},
fadeIn: {
'0%': {
opacity: '0'
},
'100%': {
opacity: '1'
}
},
pulseActive: {
'0%': { boxShadow: '0 0 0 0 rgba(59, 130, 246, 0.4)' },
'70%': { boxShadow: '0 0 0 6px rgba(59, 130, 246, 0)' },
'100%': { boxShadow: '0 0 0 0 rgba(59, 130, 246, 0)' }
}
},
animation: {
'fadeInUp': 'fadeInUp 0.3s ease-out',
'fadeIn': 'fadeIn 0.3s ease-out',
'pulseActive': 'pulseActive 0.4s ease-out'
}
},
},
plugins: [require('tailwindcss-primeui')]
}