-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (29 loc) · 871 Bytes
/
tailwind.config.js
File metadata and controls
30 lines (29 loc) · 871 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/@tremor/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
keyframes: {
animatedgradient: {
'0%': { backgroundPosition: '0% 50%' },
'50%': { backgroundPosition: '100% 50%' },
'100%': { backgroundPosition: '0% 50%' },
},
},
backgroundSize: {
'300%': '300%',
},
animation: {
gradient: 'animatedgradient 6s ease infinite alternate',
},
},
},
plugins: [
// eslint-disable-next-line @typescript-eslint/no-require-imports, no-undef
require('tailwind-scrollbar-hide')
],
}