forked from creativetimofficial/material-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
38 lines (37 loc) · 1.1 KB
/
tailwind.config.js
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 withMT = require("./packages/material-tailwind-html/utils/withMT");
module.exports = withMT({
content: [
"./packages/material-tailwind-react/src/components/**/*.{js,ts,jsx,tsx}",
"./packages/material-tailwind-react/src/theme/components/**/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./pagesComponents/**/*.{js,ts,jsx,tsx}",
"./react-sections/*.{js,ts,jsx,tsx}",
"./documentation/**/*.mdx"
],
theme: {
extend: {
animation: {
slide_input: "slide 8s ease-in-out infinite",
slide_card: "slide 20s ease-in-out infinite",
slide_avatars: "slide 11s ease-in-out infinite",
slide_button: "slide 7s ease-in-out infinite",
slide_chip: "slide 18s ease-in-out infinite",
slide_toggle: "slide 10s ease-in-out infinite"
},
keyframes: {
slide: {
from: {
transform: "translate(50px, 0px)"
},
"65%": {
transform: "translate(0, 0)"
},
to: {
transform: "translate(50px, -0px)"
}
}
}
}
},
plugins: []
});