generated from vivid-lapin/ts
-
Notifications
You must be signed in to change notification settings - Fork 6
/
tailwind.config.js
46 lines (46 loc) · 1022 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
37
38
39
40
41
42
43
44
45
46
module.exports = {
content: [
"./index.html",
"./src/**/*.{ts,tsx,scss}",
"./node_modules/react-multi-carousel/lib/styles.css",
],
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
plugins: [
require("tailwindcss-textshadow"),
require("@tailwindcss/forms"),
require("tailwind-scrollbar"),
],
theme: {
gradientColorStops: (theme) => ({
...theme("colors"),
blackOpacity: "rgba(0, 0, 0, var(--tw-bg-opacity))",
}),
extend: {
cursor: {
none: "none",
},
animation: {
"ping-once":
"ping 1s cubic-bezier(0, 0, 0.2, 1), hidden 1s linear 1s infinite",
},
maxHeight: {
halfscreen: "50vh",
},
transitionProperty: {
maxHeight: "max-height",
width: "width",
strokeDashoffset: "stroke-dashoffset",
},
keyframes: {
hidden: {
"0%, 100%": {
opacity: 0,
},
},
},
},
},
}