-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
36 lines (35 loc) · 895 Bytes
/
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
module.exports = {
mode: "jit",
content: ["./app/**/*.{js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
maxWidth: {
prose: "100%",
},
extend: {
animation: {
fade: "fadeOut 3s ease-out",
ohNo: "ohNo 0.82s cubic-bezier(.36,.07,.19,.97) both",
},
keyframes: (theme) => ({
fadeOut: {
"0%": { opacity: "1" },
"100%": { opacity: "0" },
},
ohNo: {
"10%, 90%": { transform: "translate3d(-1px, 0, 0)" },
"20%, 80%": { transform: "translate3d(2px, 0, 0)" },
"30%, 50%, 70%": { transform: "translate3d(-4px, 0, 0)" },
"40%, 60%": { transform: "translate3d(4px, 0, 0)" },
},
}),
},
},
variants: {
lineClamp: ["responsive", "hover"],
},
plugins: [
require("@tailwindcss/line-clamp"),
require("@tailwindcss/typography"),
],
};