-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
97 lines (97 loc) · 2.03 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
// container: {
// center: true,
// padding: {
// DEFAULT: "1.25rem",
// sm: "2rem",
// md: "2.5rem",
// lg: "2rem",
// xl: "2rem",
// "2xl": "10rem",
// },
// },
// fontSize: {
// "display-2xl": [
// "72px",
// {
// letterSpacing: "-0.025em",
// lineHeight: "96px",
// },
// ],
// "display-xl": [
// "60px",
// {
// letterSpacing: "-0.025em",
// lineHeight: "72px",
// },
// ],
// "display-lg": [
// "48px",
// {
// letterSpacing: "0em",
// lineHeight: "60px",
// },
// ],
// "display-md": [
// "36px",
// {
// letterSpacing: "0em",
// lineHeight: "48px",
// },
// ],
// "display-sm": [
// "30px",
// {
// letterSpacing: "0em",
// lineHeight: "40px",
// },
// ],
// "display-xs": [
// "24px",
// {
// letterSpacing: "0em",
// lineHeight: "32px",
// },
// ],
// "body-xl": [
// "20px",
// {
// letterSpacing: "0em",
// lineHeight: "32px",
// },
// ],
// "body-lg": [
// "18px",
// {
// letterSpacing: "0em",
// lineHeight: "32px",
// },
// ],
// "body-md": [
// "16px",
// {
// letterSpacing: "0em",
// lineHeight: "24px",
// },
// ],
// "body-sm": [
// "14px",
// {
// letterSpacing: "0em",
// lineHeight: "24px",
// },
// ],
// "body-xs": [
// "12px",
// {
// letterSpacing: "0em",
// lineHeight: "16px",
// },
// ],
// },
},
plugins: [],
};