-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (44 loc) · 1.06 KB
/
Copy pathtailwind.config.js
File metadata and controls
44 lines (44 loc) · 1.06 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
animation: {
'pulse-border': 'pulse-border 2.5s infinite',
appear: "appear 0.4s ease-in-out",
disappear: "disappear 0.4s ease-in-out",
},
keyframes: {
'pulse-border': {
'0%': { borderColor: 'rgba(61, 61, 61, 0.1)' },
'25%': { borderColor: 'rgba(61, 61, 61, 0.5)' },
'50%': { borderColor: 'rgba(61, 61, 61, 0.7)' },
'75%': { borderColor: 'rgba(61, 61, 61, 0.5)' },
'100%': { borderColor: 'rgba(61, 61, 61, 0.2)' },
},
appear: {
"0%": {
bottom: "-458px",
},
"100%": {
bottom: "0",
},
},
disappear: {
"0%": {
bottom: "0",
},
"100%": {
bottom: "-458px",
},
},
},
fontFamily: {
'jakarta': ['"Plus Jakarta Sans"', 'sans-serif'],
},
},
},
plugins: [],
}