-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
52 lines (51 loc) · 1.39 KB
/
tailwind.config.js
File metadata and controls
52 lines (51 loc) · 1.39 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
49
50
51
52
const withMT = require("@material-tailwind/react/utils/withMT");
module.exports = withMT({
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
backgroundImage: {
"custom-gradient":
"linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.15) 100%), radial-gradient(at top center, rgba(255,255,255,0.40) 0%, rgba(0,0,0,0.40) 120%)",
},
backgroundBlendMode: {
"multiply-multiply": "multiply,multiply",
},
height: {
"8/9": "88%",
},
width: {
"8/9": "88%",
"6/7": "85.7142857%",
"1/7": "14.2857143%",
},
spacing: {
100: "30rem",
128: "32rem",
},
keyframes: {
slidein: {
from: {
opacity: "0",
transform: "translateY(-10px)",
},
to: {
opacity: "1",
transform: "translateY(0)",
},
},
tilt: {
"0%, 100%": { transform: "rotate(0deg)" },
"25%": { transform: "rotate(5deg)" },
"50%": { transform: "rotate(-5deg)" },
"75%": { transform: "rotate(5deg)" },
},
},
animation: {
slidein: "slidein 1s ease var(--slidein-delay, 0) forwards",
scroll: "scroll 20s linear infinite",
tilt: "tilt 0.5s infinite ease-in-out",
},
},
},
plugins: [],
});