-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
64 lines (63 loc) · 1.12 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
const colors = require('tailwindcss/colors');
module.exports = {
content: ["./views/**/*.tx", "./public/**/*.html"],
theme: {
extend: {
colors: {
primary: colors.sky,
secondary: colors.amber,
},
},
minWidth: {
'admin': '1024px',
'full': '100%',
'16': '16rem',
},
},
plugins: [],
safelist: [
'text-sm',
'bg-white',
'focus:bg-white',
'bg-cyan-600',
'bg-indigo-600',
'bg-orange-600',
'bg-pink-600',
'hover:bg-cyan-500',
'appearance-none',
'w-full',
'h-full',
'rounded-l',
'rounded-r',
'border',
'border-t',
'border-r',
'border-b',
'sm:border',
'md:border',
'focus:border-l',
'focus:border-r',
'sm:rounded-r-none',
'sm:border-r-0',
'border-gray-400',
'focus:border-gray-500',
'block',
'text-gray-700',
'focus:text-gray-700',
'h-2',
'h-4',
'h-8',
'w-2',
'w-4',
'w-8',
'py-2',
'px-4',
'pl-8',
'pr-6',
'pr-8',
'leading-tight',
'focus:outline-none',
'placeholder-gray-400',
'focus:placeholder-gray-600',
],
}