-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
59 lines (58 loc) · 1.19 KB
/
tailwind.config.ts
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
50
51
52
53
54
55
56
57
58
59
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/sections/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
screens: {
sm: "640px",
md: "768px",
lg: "1200px",
},
extend: {
fontFamily: {
heading: ["var(--font-sora)", "sans-serif"],
body: ["var(--font-space-grotesk)", "sans-serif"],
},
container: {
center: true,
padding: {
DEFAULT: "1rem",
lg: "2rem",
},
},
gap: {
18: "4.5rem",
},
inset: {
18: "4.5rem",
},
height: {
18: "4.5rem",
},
padding: {
18: "4.5rem",
},
rotate: {
135: "135deg",
225: "225deg",
270: "270deg",
315: "315deg",
},
keyframes: {
"cursor-blink": {
"0%": { opacity: "1" },
"50%": { opacity: "0" },
"100%": { opacity: "1" },
},
},
animation: {
"cursor-blink": "cursor-blink 1s step-start infinite",
},
},
},
plugins: [],
};
export default config;