-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (40 loc) · 948 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
40 lines (40 loc) · 948 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'media',
theme: {
extend: {
keyframes: {
'slide-up': {
'0%': {
transform: 'translateY(100%)',
opacity: '0',
filter: 'blur(4px)'
},
'100%': {
transform: 'translateY(0)',
opacity: '1',
filter: 'blur(0)'
}
},
'slide-out': {
'0%': {
transform: 'translateY(0)',
opacity: '1',
filter: 'blur(0)'
},
'100%': {
transform: 'translateY(-100%)',
opacity: '0',
filter: 'blur(4px)'
}
}
},
animation: {
'slide-up': 'slide-up 0.3s ease-out forwards',
'slide-out': 'slide-out 0.3s ease-out forwards'
}
},
},
plugins: [],
};