-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
36 lines (36 loc) · 872 Bytes
/
Copy pathtailwind.config.mjs
File metadata and controls
36 lines (36 loc) · 872 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
primary: "#EB1E2B",
},
container: {
screens: {
DEFAULT: "1800px",
sm: "1800px",
lg: "1800px",
xl: "1800px",
"2xl": "1800px",
},
padding: "1rem",
},
animation: {
marquee: "marquee 50s linear infinite",
marquee2: "marquee2 50s linear infinite",
},
keyframes: {
marquee: {
"0%": { transform: "translateX(0%)" },
"100%": { transform: "translateX(-100%)" },
},
marquee2: {
"0%": { transform: "translateX(100%)" },
"100%": { transform: "translateX(0%)" },
},
},
},
},
plugins: [],
};