-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
35 lines (31 loc) · 969 Bytes
/
tailwind.config.ts
File metadata and controls
35 lines (31 loc) · 969 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
animation: {
marquee: "marquee 40s linear infinite", // Smooth infinite loop for Sponsors
speakersMarquee: "speakersMarquee 80s linear infinite", // Custom speed for Meet Our Speakers
},
keyframes: {
marquee: {
"0%": { transform: "translateX(0%)" },
"100%": { transform: "translateX(-50%)" }, // Moves exactly half the width
},
speakersMarquee: {
"0%": { transform: "translateX(0%)" },
"100%": { transform: "translateX(-50%)" }, // Moves exactly half the width, but slower
},
},
fontFamily: {
myCustom: ["BrigendsExpanded", "sans-serif"],
},
},
},
plugins: [],
};
export default config;