-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (37 loc) · 853 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (37 loc) · 853 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
module.exports = {
purge: {
enabled: true,
content: ['src/**/*.js', 'src/**/*.jsx', 'public/**/*.html'],
options: {
safelist: [
/.*^(border|bg|text|ring).*/,
/.*^(focus:border|hover:bg|focus:bg|hover:text|focus:ring).*/,
],
},
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
minWidth: {
0: '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
full: '100%',
},
keyframes: {
'slide-up': {
'0%': { transform: 'translateY(50%)', opacity: 0 },
'100%': { transform: 'translateY(0)', opacity: 1 },
},
},
animation: {
'slide-up': 'slide-up .5s cubic-bezier(0, 1, 0, 1)',
},
},
},
variants: {
extend: {},
},
plugins: [require('@tailwindcss/aspect-ratio')],
};