-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
40 lines (40 loc) · 1.04 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
animation: {
'ping-first': 'ping 0.5s cubic-bezier(1,-0.01,.72,.71) 0.25s',
'ping-second': 'ping 0.5s cubic-bezier(1,-0.01,.72,.71) 0.5s',
leftToRight: 'leftToRight 0.3s linear ',
rightToLeft: 'rightToLeft 0.3s linear ',
'pulse-delay': 'pulseDelay 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
keyframes: {
leftToRight: {
'0%': { transform: 'translateX(-150px)' },
'100%': { transform: 'translateX(0px)' },
},
rightToLeft: {
'0%': { transform: 'translateX(150px)' },
'100%': { transform: 'translateX(0px)' },
},
pulseDelay: {
'0%': {
opacity: 0.5,
},
' 100%': {
opacity: 0.5,
},
'50%': {
opacity: 1,
},
},
},
},
},
plugins: [],
};