-
-
Notifications
You must be signed in to change notification settings - Fork 986
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (37 loc) · 842 Bytes
/
tailwind.config.js
File metadata and controls
38 lines (37 loc) · 842 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
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%)' },
},
},
animation: {
aurora: 'aurora 6s ease-in-out infinite',
shimmer: 'shimmer 2s infinite',
},
},
},
plugins: [],
};
export default tailwindConfig;