-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.allCorePlugins.js
106 lines (106 loc) · 2.27 KB
/
tailwind.config.allCorePlugins.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
98
99
100
101
102
103
104
105
106
module.exports = {
corePlugins: {
accessibility: true,
alignContent: true,
alignItems: true,
alignSelf: true,
appearance: true,
backgroundAttachment: true,
backgroundColor: true,
backgroundOpacity: true,
backgroundPosition: true,
backgroundRepeat: true,
backgroundSize: true,
borderCollapse: true,
borderColor: true,
borderOpacity: true,
borderRadius: true,
borderStyle: true,
borderWidth: true,
boxShadow: true,
boxSizing: true,
clear: true,
container: true,
cursor: true,
display: true,
divideColor: true,
divideOpacity: true,
divideWidth: true,
fill: true,
flex: true,
flexDirection: true,
flexGrow: true,
flexShrink: true,
flexWrap: true,
float: true,
fontFamily: true,
fontSize: true,
fontSmoothing: true,
fontStyle: true,
fontWeight: true,
gap: true,
gridAutoFlow: true,
gridColumn: true,
gridColumnEnd: true,
gridColumnStart: true,
gridRow: true,
gridRowEnd: true,
gridRowStart: true,
gridTemplateColumns: true,
gridTemplateRows: true,
height: true,
inset: true,
justifyContent: true,
letterSpacing: true,
lineHeight: true,
listStylePosition: true,
listStyleType: true,
margin: true,
maxHeight: true,
maxWidth: true,
minHeight: true,
minWidth: true,
objectFit: true,
objectPosition: true,
opacity: true,
order: true,
outline: true,
overflow: true,
padding: true,
placeholderColor: true,
placeholderOpacity: true,
pointerEvents: true,
position: true,
preflight: true,
resize: true,
rotate: true,
scale: true,
skew: true,
space: true,
stroke: true,
strokeWidth: true,
tableLayout: true,
textAlign: true,
textColor: true,
textDecoration: true,
textOpacity: true,
textTransform: true,
transform: true,
transformOrigin: true,
transitionDelay: true,
transitionDuration: true,
transitionProperty: true,
transitionTimingFunction: true,
translate: true,
userSelect: true,
verticalAlign: true,
visibility: true,
whitespace: true,
width: true,
wordBreak: true,
zIndex: true,
},
theme: {},
variants: {},
plugins: [],
};