-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathtailwind.config.js
More file actions
48 lines (47 loc) · 1.24 KB
/
tailwind.config.js
File metadata and controls
48 lines (47 loc) · 1.24 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
47
48
const tailwindConfig = {
content: [
'./app/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
'./features/**/*.{ts,tsx}',
'./shared/**/*.{ts,tsx}',
'./core/**/*.{ts,tsx}',
],
theme: {
screens: {
xs: '480px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
},
extend: {
keyframes: {
aurora: {
'0%, 100%': { backgroundPosition: '0% 50%' },
'50%': { backgroundPosition: '100% 50%' },
},
shimmer: {
'0%': { transform: 'translateX(-100%)' },
'100%': { transform: 'translateX(100%)' },
},
'accordion-down': {
from: { height: '0' },
to: { height: 'var(--radix-accordion-content-height)' },
},
'accordion-up': {
from: { height: 'var(--radix-accordion-content-height)' },
to: { height: '0' },
},
},
animation: {
aurora: 'aurora 6s ease-in-out infinite',
shimmer: 'shimmer 2s infinite',
'accordion-down': 'accordion-down 280ms cubic-bezier(0.16, 1, 0.3, 1)',
'accordion-up': 'accordion-up 180ms cubic-bezier(0.4, 0, 1, 1)',
},
},
},
plugins: [],
};
export default tailwindConfig;