-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
46 lines (46 loc) · 1.12 KB
/
tailwind.config.js
File metadata and controls
46 lines (46 loc) · 1.12 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
38
39
40
41
42
43
44
45
46
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
'inter': ['Inter', 'sans-serif'],
},
animation: {
'fade-in': 'fadeIn 0.3s ease-out',
'bubble-appear': 'bubbleAppear 0.3s ease-out',
'dot-pulse': 'dotPulse 1.5s infinite ease-in-out',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
bubbleAppear: {
'0%': {
opacity: '0',
transform: 'translateX(-50%) translateY(10px) scale(0.8)'
},
'100%': {
opacity: '1',
transform: 'translateX(-50%) translateY(0) scale(1)'
},
},
dotPulse: {
'0%, 60%, 100%': {
transform: 'scale(1)',
opacity: '1'
},
'30%': {
transform: 'scale(0.8)',
opacity: '0.5'
},
},
},
},
},
plugins: [],
}