-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (37 loc) · 985 Bytes
/
tailwind.config.js
File metadata and controls
38 lines (37 loc) · 985 Bytes
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
/** @type {import("tailwindcss").Config} */
module.exports = {
mode: "jit",
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
screens: {
sm: "640px",
md: "768px",
xl: "1440px",
},
extend: {
animation: {
rolling_1: "30s linear infinite normal none running rolling_2",
rolling_2: "30s linear infinite rolling_2",
},
keyframes: {
rolling_1: {
"0%": { transform: "translateX(100%)" },
"50%": { transform: "translateX(-100%)" },
"50.1%": { transform: "translateX(100%)" },
"100%": { transform: "translateX(0%)" },
},
rolling_2: {
"0%": { transform: "translateX(0%)" },
"100%": { transform: "translateX(-200%)" },
},
},
},
},
plugins: [],
};