-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1.09 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
39
40
41
42
43
44
45
46
47
48
49
/** @type {import('tailwindcss').Config} */
module.exports = {
future: {
hoverOnlyWhenSupported: true,
},
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
screens: {
sm: "550px",
md: "950px",
lg: "1128px",
},
fontFamily: {
sans: ["var(--font-sans)"],
},
maxWidth: {
"8xl": "86rem",
},
keyframes: {
slider: {
"0%": { transform: "translateX(0)" },
"100%": {
transform: "translateX(calc(-100% / var(--slider-total-clones)))",
},
},
"dot-pulse": {
"0%,100%": {
transform: "Scale(1)",
opacity: 1,
},
"50%": {
transform: "scale(1.25)",
opacity: 0.3,
},
},
},
animation: {
slider: "slider 56s linear infinite",
"dot-pulse": "dot-pulse 1s infinite ease-in-out",
},
},
},
plugins: [require("tailwindcss-animate")],
}