-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
63 lines (63 loc) · 1.18 KB
/
tailwind.config.js
File metadata and controls
63 lines (63 loc) · 1.18 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./views/**/*.{ejs,html,js}", "./public/**/*.{html,js,css}", "./src/**/*.{html,js,css}"],
safelist: [
// Common classes from your .ejs files:
"bg-gray-50",
"bg-gray-100",
"container",
"mx-auto",
"px-4",
"py-12",
"text-center",
"mb-12",
"text-4xl",
"font-bold",
"mb-3",
"text-xl",
"text-gray-600",
"bg-white",
"rounded-lg",
"shadow-md",
"mt-5",
"p-6",
"text-2xl",
"font-semibold",
"mb-4",
"text-gray-700",
"text-blue-600",
"hover:text-blue-800",
"bg-gray-500",
"hover:bg-gray-700",
"py-2",
"px-4",
"rounded",
"transition",
"duration-200",
"flex",
"justify-between",
"items-center",
"block",
"mb-1",
"hover:text-blue-800",
"bg-blue-500",
"hover:bg-blue-700",
"disabled:opacity-50",
"mt-4",
"mb-6",
"border",
"border-gray-300",
"focus:outline-none",
"focus:ring-2",
"focus:ring-blue-500",
"bg-yellow-100",
"border-l-4",
"border-yellow-500",
"p-4",
"text-yellow-700",
],
theme: {
extend: {},
},
plugins: [],
};