generated from quavedev/meteor-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
74 lines (73 loc) · 1.37 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
/** @type {import('tailwindcss').Config} */
/* eslint-disable */
module.exports = {
content: [
'./app/**/*.{js,jsx,ts,tsx}',
'./client/**/*.{js,jsx,ts,tsx}',
'./client/*.html',
],
safelist: [
'-mx-1.5',
'-my-1.5',
'appearance-none',
'bg-green-100',
'bg-green-50',
'bg-indigo-600',
'bg-red-50',
'bg-white',
'block',
'border',
'border-gray-300',
'border-transparent',
'cursor-pointer',
'flex',
'focus:border-indigo-500',
'focus:outline-none',
'focus:ring-2',
'focus:ring-indigo-500',
'focus:ring-offset-2',
'focus:ring-offset-red-50',
'focus:ring-red-600',
'font-medium',
'hover:bg-indigo-700',
'hover:bg-red-100',
'hover:text-indigo-500',
'inline-flex',
'justify-center',
'justify-end',
'ml-auto',
'mt-0',
'mt-1',
'mt-8',
'p-1.5',
'p-4',
'pl-3',
'placeholder-gray-400',
'px-3',
'px-4',
'py-2',
'py-8',
'ring-green-600',
'ring-offset-green-50',
'rounded-md',
'shadow',
'shadow-sm',
'sm:max-w-md',
'sm:mx-auto',
'sm:px-10',
'sm:rounded-lg',
'sm:text-sm',
'sm:w-full',
'space-y-6',
'sr-only',
'text-gray-700',
'text-green-500',
'text-green-800',
'text-indigo-600',
'text-red-500',
'text-red-800',
'text-sm',
'text-white',
'w-full',
],
};