-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
38 lines (36 loc) · 1.03 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontSize: {
'13xl': '13rem'
},
animation: {
'waving-man':'wave 5s linear infinite',
bounce:
"bounce 0.5s alternate cubic-bezier(0.95, 0.05, 0.795, 0.035) infinite",
},
keyframes: {
from: { transform : "translateY(10px)" },
to: { transform : "translateY(0)" },
wave: {
'0%': { transform: 'rotate(0.0deg)' },
'10%': { transform: 'rotate(14deg)' },
'20%': { transform: 'rotate(-8deg)' },
'30%': { transform: 'rotate(14deg)' },
'40%': { transform: 'rotate(-4deg)' },
'50%': { transform: 'rotate(10.0deg)' },
'60%': { transform: 'rotate(0.0deg)' },
'100%': { transform: 'rotate(0.0deg)' },
},
}
},
},
plugins: [],
}