@sprinklrjs/spaceweb-themes 10.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common-theme/theme.d.ts +343 -0
- package/common-theme/theme.js +309 -0
- package/common-theme/utilities.d.ts +5144 -0
- package/common-theme/utilities.js +1581 -0
- package/hyperspace/dark/index.d.ts +6304 -0
- package/hyperspace/dark/index.js +8 -0
- package/hyperspace/dark/theme.d.ts +798 -0
- package/hyperspace/dark/theme.js +297 -0
- package/hyperspace/dark/utilities.d.ts +5505 -0
- package/hyperspace/dark/utilities.js +137 -0
- package/hyperspace/light/index.d.ts +6304 -0
- package/hyperspace/light/index.js +8 -0
- package/hyperspace/light/theme.d.ts +798 -0
- package/hyperspace/light/theme.js +297 -0
- package/hyperspace/light/utilities.d.ts +5505 -0
- package/hyperspace/light/utilities.js +137 -0
- package/hyperspace/themeVars.css +253 -0
- package/hyperspace/themeVars.min.css +1 -0
- package/package.json +27 -0
- package/space/dark/index.d.ts +6283 -0
- package/space/dark/index.js +8 -0
- package/space/dark/theme.d.ts +780 -0
- package/space/dark/theme.js +275 -0
- package/space/dark/utilities.d.ts +5502 -0
- package/space/dark/utilities.js +134 -0
- package/space/light/index.d.ts +6283 -0
- package/space/light/index.js +8 -0
- package/space/light/theme.d.ts +780 -0
- package/space/light/theme.js +275 -0
- package/space/light/utilities.d.ts +5502 -0
- package/space/light/utilities.js +134 -0
- package/space/themeVars.css +251 -0
- package/space/themeVars.min.css +1 -0
- package/styles/globals.css +80 -0
- package/styles/globals.min.css +1 -0
- package/styles/normalize.css +362 -0
- package/styles/normalize.min.css +1 -0
- package/types.d.ts +66 -0
- package/types.js +2 -0
- package/utilities.css +239 -0
- package/utilities.min.css +1 -0
|
@@ -0,0 +1,1581 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
exports.__esModule = true;
|
|
3
|
+
// THIS FILES IS GENERATED USING SCRIPT, DO NOT EDIT DIRECTLY
|
|
4
|
+
var margin = function (value) {
|
|
5
|
+
return {
|
|
6
|
+
marginTop: value,
|
|
7
|
+
marginBottom: value,
|
|
8
|
+
marginLeft: value,
|
|
9
|
+
marginRight: value
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
var padding = function (value) {
|
|
13
|
+
return {
|
|
14
|
+
paddingTop: value,
|
|
15
|
+
paddingBottom: value,
|
|
16
|
+
paddingLeft: value,
|
|
17
|
+
paddingRight: value
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
var borderRadius = function (value) {
|
|
21
|
+
return {
|
|
22
|
+
borderTopLeftRadius: value,
|
|
23
|
+
borderTopRightRadius: value,
|
|
24
|
+
borderBottomLeftRadius: value,
|
|
25
|
+
borderBottomRightRadius: value
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
var borderWidth = function (value) {
|
|
29
|
+
return {
|
|
30
|
+
borderTopWidth: value,
|
|
31
|
+
borderBottomWidth: value,
|
|
32
|
+
borderRightWidth: value,
|
|
33
|
+
borderLeftWidth: value
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
exports["default"] = {
|
|
37
|
+
longhandUtils: { margin: margin, padding: padding, borderRadius: borderRadius, borderWidth: borderWidth },
|
|
38
|
+
utilities: {
|
|
39
|
+
'bg-transparent': { backgroundColor: 'transparent' },
|
|
40
|
+
'bg-bottom': { backgroundPosition: 'bottom' },
|
|
41
|
+
'bg-center': { backgroundPosition: 'center' },
|
|
42
|
+
'bg-left': { backgroundPosition: 'left' },
|
|
43
|
+
'bg-left-bottom': { backgroundPosition: 'left bottom' },
|
|
44
|
+
'bg-left-top': { backgroundPosition: 'left top' },
|
|
45
|
+
'bg-right': { backgroundPosition: 'right' },
|
|
46
|
+
'bg-right-bottom': { backgroundPosition: 'right bottom' },
|
|
47
|
+
'bg-right-top': { backgroundPosition: 'right top' },
|
|
48
|
+
'bg-top': { backgroundPosition: 'top' },
|
|
49
|
+
'bg-auto': { backgroundSize: 'auto' },
|
|
50
|
+
'bg-cover': { backgroundSize: 'cover' },
|
|
51
|
+
'bg-contain': { backgroundSize: 'contain' },
|
|
52
|
+
'rounded-0': borderRadius('0'),
|
|
53
|
+
'rounded-1': borderRadius('1px'),
|
|
54
|
+
'rounded-2': borderRadius('2px'),
|
|
55
|
+
'rounded-4': borderRadius('4px'),
|
|
56
|
+
'rounded-6': borderRadius('6px'),
|
|
57
|
+
'rounded-8': borderRadius('8px'),
|
|
58
|
+
'rounded-12': borderRadius('12px'),
|
|
59
|
+
'rounded-16': borderRadius('16px'),
|
|
60
|
+
'rounded-none': borderRadius('0'),
|
|
61
|
+
'rounded-sm': borderRadius('0.125rem'),
|
|
62
|
+
'rounded-md': borderRadius('0.375rem'),
|
|
63
|
+
'rounded-lg': borderRadius('0.5rem'),
|
|
64
|
+
rounded: borderRadius('1px'),
|
|
65
|
+
'rounded-full': borderRadius('100%'),
|
|
66
|
+
'rounded-t-0': { borderTopLeftRadius: '0', borderTopRightRadius: '0' },
|
|
67
|
+
'rounded-r-0': { borderTopRightRadius: '0', borderBottomRightRadius: '0' },
|
|
68
|
+
'rounded-b-0': { borderBottomRightRadius: '0', borderBottomLeftRadius: '0' },
|
|
69
|
+
'rounded-l-0': { borderTopLeftRadius: '0', borderBottomLeftRadius: '0' },
|
|
70
|
+
'rounded-t-1': { borderTopLeftRadius: '1px', borderTopRightRadius: '1px' },
|
|
71
|
+
'rounded-r-1': { borderTopRightRadius: '1px', borderBottomRightRadius: '1px' },
|
|
72
|
+
'rounded-b-1': { borderBottomRightRadius: '1px', borderBottomLeftRadius: '1px' },
|
|
73
|
+
'rounded-l-1': { borderTopLeftRadius: '1px', borderBottomLeftRadius: '1px' },
|
|
74
|
+
'rounded-t-2': { borderTopLeftRadius: '2px', borderTopRightRadius: '2px' },
|
|
75
|
+
'rounded-r-2': { borderTopRightRadius: '2px', borderBottomRightRadius: '2px' },
|
|
76
|
+
'rounded-b-2': { borderBottomRightRadius: '2px', borderBottomLeftRadius: '2px' },
|
|
77
|
+
'rounded-l-2': { borderTopLeftRadius: '2px', borderBottomLeftRadius: '2px' },
|
|
78
|
+
'rounded-t-4': { borderTopLeftRadius: '4px', borderTopRightRadius: '4px' },
|
|
79
|
+
'rounded-r-4': { borderTopRightRadius: '4px', borderBottomRightRadius: '4px' },
|
|
80
|
+
'rounded-b-4': { borderBottomRightRadius: '4px', borderBottomLeftRadius: '4px' },
|
|
81
|
+
'rounded-l-4': { borderTopLeftRadius: '4px', borderBottomLeftRadius: '4px' },
|
|
82
|
+
'rounded-t-6': { borderTopLeftRadius: '6px', borderTopRightRadius: '6px' },
|
|
83
|
+
'rounded-r-6': { borderTopRightRadius: '6px', borderBottomRightRadius: '6px' },
|
|
84
|
+
'rounded-b-6': { borderBottomRightRadius: '6px', borderBottomLeftRadius: '6px' },
|
|
85
|
+
'rounded-l-6': { borderTopLeftRadius: '6px', borderBottomLeftRadius: '6px' },
|
|
86
|
+
'rounded-t-8': { borderTopLeftRadius: '8px', borderTopRightRadius: '8px' },
|
|
87
|
+
'rounded-r-8': { borderTopRightRadius: '8px', borderBottomRightRadius: '8px' },
|
|
88
|
+
'rounded-b-8': { borderBottomRightRadius: '8px', borderBottomLeftRadius: '8px' },
|
|
89
|
+
'rounded-l-8': { borderTopLeftRadius: '8px', borderBottomLeftRadius: '8px' },
|
|
90
|
+
'rounded-t-12': { borderTopLeftRadius: '12px', borderTopRightRadius: '12px' },
|
|
91
|
+
'rounded-r-12': { borderTopRightRadius: '12px', borderBottomRightRadius: '12px' },
|
|
92
|
+
'rounded-b-12': { borderBottomRightRadius: '12px', borderBottomLeftRadius: '12px' },
|
|
93
|
+
'rounded-l-12': { borderTopLeftRadius: '12px', borderBottomLeftRadius: '12px' },
|
|
94
|
+
'rounded-t-16': { borderTopLeftRadius: '16px', borderTopRightRadius: '16px' },
|
|
95
|
+
'rounded-r-16': { borderTopRightRadius: '16px', borderBottomRightRadius: '16px' },
|
|
96
|
+
'rounded-b-16': { borderBottomRightRadius: '16px', borderBottomLeftRadius: '16px' },
|
|
97
|
+
'rounded-l-16': { borderTopLeftRadius: '16px', borderBottomLeftRadius: '16px' },
|
|
98
|
+
'rounded-t-none': { borderTopLeftRadius: '0', borderTopRightRadius: '0' },
|
|
99
|
+
'rounded-r-none': { borderTopRightRadius: '0', borderBottomRightRadius: '0' },
|
|
100
|
+
'rounded-b-none': { borderBottomRightRadius: '0', borderBottomLeftRadius: '0' },
|
|
101
|
+
'rounded-l-none': { borderTopLeftRadius: '0', borderBottomLeftRadius: '0' },
|
|
102
|
+
'rounded-t-sm': { borderTopLeftRadius: '0.125rem', borderTopRightRadius: '0.125rem' },
|
|
103
|
+
'rounded-r-sm': { borderTopRightRadius: '0.125rem', borderBottomRightRadius: '0.125rem' },
|
|
104
|
+
'rounded-b-sm': { borderBottomRightRadius: '0.125rem', borderBottomLeftRadius: '0.125rem' },
|
|
105
|
+
'rounded-l-sm': { borderTopLeftRadius: '0.125rem', borderBottomLeftRadius: '0.125rem' },
|
|
106
|
+
'rounded-t-md': { borderTopLeftRadius: '0.375rem', borderTopRightRadius: '0.375rem' },
|
|
107
|
+
'rounded-r-md': { borderTopRightRadius: '0.375rem', borderBottomRightRadius: '0.375rem' },
|
|
108
|
+
'rounded-b-md': { borderBottomRightRadius: '0.375rem', borderBottomLeftRadius: '0.375rem' },
|
|
109
|
+
'rounded-l-md': { borderTopLeftRadius: '0.375rem', borderBottomLeftRadius: '0.375rem' },
|
|
110
|
+
'rounded-t-lg': { borderTopLeftRadius: '0.5rem', borderTopRightRadius: '0.5rem' },
|
|
111
|
+
'rounded-r-lg': { borderTopRightRadius: '0.5rem', borderBottomRightRadius: '0.5rem' },
|
|
112
|
+
'rounded-b-lg': { borderBottomRightRadius: '0.5rem', borderBottomLeftRadius: '0.5rem' },
|
|
113
|
+
'rounded-l-lg': { borderTopLeftRadius: '0.5rem', borderBottomLeftRadius: '0.5rem' },
|
|
114
|
+
'rounded-t': { borderTopLeftRadius: '1px', borderTopRightRadius: '1px' },
|
|
115
|
+
'rounded-r': { borderTopRightRadius: '1px', borderBottomRightRadius: '1px' },
|
|
116
|
+
'rounded-b': { borderBottomRightRadius: '1px', borderBottomLeftRadius: '1px' },
|
|
117
|
+
'rounded-l': { borderTopLeftRadius: '1px', borderBottomLeftRadius: '1px' },
|
|
118
|
+
'rounded-t-full': { borderTopLeftRadius: '100%', borderTopRightRadius: '100%' },
|
|
119
|
+
'rounded-r-full': { borderTopRightRadius: '100%', borderBottomRightRadius: '100%' },
|
|
120
|
+
'rounded-b-full': { borderBottomRightRadius: '100%', borderBottomLeftRadius: '100%' },
|
|
121
|
+
'rounded-l-full': { borderTopLeftRadius: '100%', borderBottomLeftRadius: '100%' },
|
|
122
|
+
'rounded-tl-0': { borderTopLeftRadius: '0' },
|
|
123
|
+
'rounded-tr-0': { borderTopRightRadius: '0' },
|
|
124
|
+
'rounded-br-0': { borderBottomRightRadius: '0' },
|
|
125
|
+
'rounded-bl-0': { borderBottomLeftRadius: '0' },
|
|
126
|
+
'rounded-tl-1': { borderTopLeftRadius: '1px' },
|
|
127
|
+
'rounded-tr-1': { borderTopRightRadius: '1px' },
|
|
128
|
+
'rounded-br-1': { borderBottomRightRadius: '1px' },
|
|
129
|
+
'rounded-bl-1': { borderBottomLeftRadius: '1px' },
|
|
130
|
+
'rounded-tl-2': { borderTopLeftRadius: '2px' },
|
|
131
|
+
'rounded-tr-2': { borderTopRightRadius: '2px' },
|
|
132
|
+
'rounded-br-2': { borderBottomRightRadius: '2px' },
|
|
133
|
+
'rounded-bl-2': { borderBottomLeftRadius: '2px' },
|
|
134
|
+
'rounded-tl-4': { borderTopLeftRadius: '4px' },
|
|
135
|
+
'rounded-tr-4': { borderTopRightRadius: '4px' },
|
|
136
|
+
'rounded-br-4': { borderBottomRightRadius: '4px' },
|
|
137
|
+
'rounded-bl-4': { borderBottomLeftRadius: '4px' },
|
|
138
|
+
'rounded-tl-6': { borderTopLeftRadius: '6px' },
|
|
139
|
+
'rounded-tr-6': { borderTopRightRadius: '6px' },
|
|
140
|
+
'rounded-br-6': { borderBottomRightRadius: '6px' },
|
|
141
|
+
'rounded-bl-6': { borderBottomLeftRadius: '6px' },
|
|
142
|
+
'rounded-tl-8': { borderTopLeftRadius: '8px' },
|
|
143
|
+
'rounded-tr-8': { borderTopRightRadius: '8px' },
|
|
144
|
+
'rounded-br-8': { borderBottomRightRadius: '8px' },
|
|
145
|
+
'rounded-bl-8': { borderBottomLeftRadius: '8px' },
|
|
146
|
+
'rounded-tl-12': { borderTopLeftRadius: '12px' },
|
|
147
|
+
'rounded-tr-12': { borderTopRightRadius: '12px' },
|
|
148
|
+
'rounded-br-12': { borderBottomRightRadius: '12px' },
|
|
149
|
+
'rounded-bl-12': { borderBottomLeftRadius: '12px' },
|
|
150
|
+
'rounded-tl-16': { borderTopLeftRadius: '16px' },
|
|
151
|
+
'rounded-tr-16': { borderTopRightRadius: '16px' },
|
|
152
|
+
'rounded-br-16': { borderBottomRightRadius: '16px' },
|
|
153
|
+
'rounded-bl-16': { borderBottomLeftRadius: '16px' },
|
|
154
|
+
'rounded-tl-none': { borderTopLeftRadius: '0' },
|
|
155
|
+
'rounded-tr-none': { borderTopRightRadius: '0' },
|
|
156
|
+
'rounded-br-none': { borderBottomRightRadius: '0' },
|
|
157
|
+
'rounded-bl-none': { borderBottomLeftRadius: '0' },
|
|
158
|
+
'rounded-tl-sm': { borderTopLeftRadius: '0.125rem' },
|
|
159
|
+
'rounded-tr-sm': { borderTopRightRadius: '0.125rem' },
|
|
160
|
+
'rounded-br-sm': { borderBottomRightRadius: '0.125rem' },
|
|
161
|
+
'rounded-bl-sm': { borderBottomLeftRadius: '0.125rem' },
|
|
162
|
+
'rounded-tl-md': { borderTopLeftRadius: '0.375rem' },
|
|
163
|
+
'rounded-tr-md': { borderTopRightRadius: '0.375rem' },
|
|
164
|
+
'rounded-br-md': { borderBottomRightRadius: '0.375rem' },
|
|
165
|
+
'rounded-bl-md': { borderBottomLeftRadius: '0.375rem' },
|
|
166
|
+
'rounded-tl-lg': { borderTopLeftRadius: '0.5rem' },
|
|
167
|
+
'rounded-tr-lg': { borderTopRightRadius: '0.5rem' },
|
|
168
|
+
'rounded-br-lg': { borderBottomRightRadius: '0.5rem' },
|
|
169
|
+
'rounded-bl-lg': { borderBottomLeftRadius: '0.5rem' },
|
|
170
|
+
'rounded-tl': { borderTopLeftRadius: '1px' },
|
|
171
|
+
'rounded-tr': { borderTopRightRadius: '1px' },
|
|
172
|
+
'rounded-br': { borderBottomRightRadius: '1px' },
|
|
173
|
+
'rounded-bl': { borderBottomLeftRadius: '1px' },
|
|
174
|
+
'rounded-tl-full': { borderTopLeftRadius: '100%' },
|
|
175
|
+
'rounded-tr-full': { borderTopRightRadius: '100%' },
|
|
176
|
+
'rounded-br-full': { borderBottomRightRadius: '100%' },
|
|
177
|
+
'rounded-bl-full': { borderBottomLeftRadius: '100%' },
|
|
178
|
+
'border-0': borderWidth('0'),
|
|
179
|
+
'border-1': borderWidth('1px'),
|
|
180
|
+
'border-2': borderWidth('2px'),
|
|
181
|
+
'border-4': borderWidth('4px'),
|
|
182
|
+
'border-6': borderWidth('6px'),
|
|
183
|
+
'border-8': borderWidth('8px'),
|
|
184
|
+
'border-12': borderWidth('12px'),
|
|
185
|
+
'border-16': borderWidth('16px'),
|
|
186
|
+
border: borderWidth('1px'),
|
|
187
|
+
'border-t-0': { borderTopWidth: '0' },
|
|
188
|
+
'border-r-0': { borderRightWidth: '0' },
|
|
189
|
+
'border-b-0': { borderBottomWidth: '0' },
|
|
190
|
+
'border-l-0': { borderLeftWidth: '0' },
|
|
191
|
+
'border-t-1': { borderTopWidth: '1px' },
|
|
192
|
+
'border-r-1': { borderRightWidth: '1px' },
|
|
193
|
+
'border-b-1': { borderBottomWidth: '1px' },
|
|
194
|
+
'border-l-1': { borderLeftWidth: '1px' },
|
|
195
|
+
'border-t-2': { borderTopWidth: '2px' },
|
|
196
|
+
'border-r-2': { borderRightWidth: '2px' },
|
|
197
|
+
'border-b-2': { borderBottomWidth: '2px' },
|
|
198
|
+
'border-l-2': { borderLeftWidth: '2px' },
|
|
199
|
+
'border-t-4': { borderTopWidth: '4px' },
|
|
200
|
+
'border-r-4': { borderRightWidth: '4px' },
|
|
201
|
+
'border-b-4': { borderBottomWidth: '4px' },
|
|
202
|
+
'border-l-4': { borderLeftWidth: '4px' },
|
|
203
|
+
'border-t-6': { borderTopWidth: '6px' },
|
|
204
|
+
'border-r-6': { borderRightWidth: '6px' },
|
|
205
|
+
'border-b-6': { borderBottomWidth: '6px' },
|
|
206
|
+
'border-l-6': { borderLeftWidth: '6px' },
|
|
207
|
+
'border-t-8': { borderTopWidth: '8px' },
|
|
208
|
+
'border-r-8': { borderRightWidth: '8px' },
|
|
209
|
+
'border-b-8': { borderBottomWidth: '8px' },
|
|
210
|
+
'border-l-8': { borderLeftWidth: '8px' },
|
|
211
|
+
'border-t-12': { borderTopWidth: '12px' },
|
|
212
|
+
'border-r-12': { borderRightWidth: '12px' },
|
|
213
|
+
'border-b-12': { borderBottomWidth: '12px' },
|
|
214
|
+
'border-l-12': { borderLeftWidth: '12px' },
|
|
215
|
+
'border-t-16': { borderTopWidth: '16px' },
|
|
216
|
+
'border-r-16': { borderRightWidth: '16px' },
|
|
217
|
+
'border-b-16': { borderBottomWidth: '16px' },
|
|
218
|
+
'border-l-16': { borderLeftWidth: '16px' },
|
|
219
|
+
'border-t': { borderTopWidth: '1px' },
|
|
220
|
+
'border-r': { borderRightWidth: '1px' },
|
|
221
|
+
'border-b': { borderBottomWidth: '1px' },
|
|
222
|
+
'border-l': { borderLeftWidth: '1px' },
|
|
223
|
+
'cursor-auto': { cursor: 'auto' },
|
|
224
|
+
'cursor-default': { cursor: 'default' },
|
|
225
|
+
'cursor-pointer': { cursor: 'pointer' },
|
|
226
|
+
'cursor-wait': { cursor: 'wait' },
|
|
227
|
+
'cursor-text': { cursor: 'text' },
|
|
228
|
+
'cursor-move': { cursor: 'move' },
|
|
229
|
+
'cursor-not-allowed': { cursor: 'not-allowed' },
|
|
230
|
+
'fill-current': { fill: 'currentColor' },
|
|
231
|
+
'flex-1': { flexGrow: '1', flexShrink: '1', flexBasis: '0%' },
|
|
232
|
+
'flex-auto': { flexGrow: '1', flexShrink: '1', flexBasis: 'auto' },
|
|
233
|
+
'flex-initial': { flexGrow: '0', flexShrink: '1', flexBasis: 'auto' },
|
|
234
|
+
'flex-none': { flexGrow: '0', flexShrink: '0', flexBasis: 'auto' },
|
|
235
|
+
'flex-grow-0': { flexGrow: '0' },
|
|
236
|
+
'flex-grow': { flexGrow: '1' },
|
|
237
|
+
'flex-shrink-0': { flexShrink: '0' },
|
|
238
|
+
'flex-shrink': { flexShrink: '1' },
|
|
239
|
+
'font-sans': {
|
|
240
|
+
fontFamily: 'system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"'
|
|
241
|
+
},
|
|
242
|
+
'font-serif': { fontFamily: 'Georgia, Cambria, "Times New Roman", Times, serif' },
|
|
243
|
+
'font-mono': { fontFamily: 'Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace' },
|
|
244
|
+
'font-300': { fontWeight: '300' },
|
|
245
|
+
'font-400': { fontWeight: '400' },
|
|
246
|
+
'font-500': { fontWeight: '500' },
|
|
247
|
+
'font-600': { fontWeight: '600' },
|
|
248
|
+
'font-700': { fontWeight: '700' },
|
|
249
|
+
'font-hairline': { fontWeight: '100' },
|
|
250
|
+
'font-thin': { fontWeight: '200' },
|
|
251
|
+
'font-light': { fontWeight: '300' },
|
|
252
|
+
'font-normal': { fontWeight: '400' },
|
|
253
|
+
'font-regular': { fontWeight: '400' },
|
|
254
|
+
'font-medium': { fontWeight: '500' },
|
|
255
|
+
'font-semibold': { fontWeight: '600' },
|
|
256
|
+
'font-bold': { fontWeight: '700' },
|
|
257
|
+
'font-extrabold': { fontWeight: '800' },
|
|
258
|
+
'font-black': { fontWeight: '900' },
|
|
259
|
+
'h-0': { height: '0' },
|
|
260
|
+
'h-1': { height: '0.4rem' },
|
|
261
|
+
'h-2': { height: '0.8rem' },
|
|
262
|
+
'h-3': { height: '1.2rem' },
|
|
263
|
+
'h-4': { height: '1.6rem' },
|
|
264
|
+
'h-5': { height: '2rem' },
|
|
265
|
+
'h-6': { height: '2.4rem' },
|
|
266
|
+
'h-7': { height: '2.8rem' },
|
|
267
|
+
'h-8': { height: '3.2rem' },
|
|
268
|
+
'h-9': { height: '3.6rem' },
|
|
269
|
+
'h-10': { height: '4rem' },
|
|
270
|
+
'h-11': { height: '4.4rem' },
|
|
271
|
+
'h-12': { height: '4.8rem' },
|
|
272
|
+
'h-16': { height: '6.4rem' },
|
|
273
|
+
'h-20': { height: '8rem' },
|
|
274
|
+
'h-24': { height: '9.6rem' },
|
|
275
|
+
'h-32': { height: '12.8rem' },
|
|
276
|
+
'h-40': { height: '16rem' },
|
|
277
|
+
'h-48': { height: '19.2rem' },
|
|
278
|
+
'h-56': { height: '22.4rem' },
|
|
279
|
+
'h-64': { height: '25.6rem' },
|
|
280
|
+
'h-auto': { height: 'auto' },
|
|
281
|
+
'h-px': { height: '1px' },
|
|
282
|
+
'h-1\\/2': { height: '50%' },
|
|
283
|
+
'h-full': { height: '100%' },
|
|
284
|
+
'h-screen': { height: '100vh' },
|
|
285
|
+
'inset-0': { top: '0', right: '0', bottom: '0', left: '0' },
|
|
286
|
+
'inset-auto': { top: 'auto', right: 'auto', bottom: 'auto', left: 'auto' },
|
|
287
|
+
'inset-y-0': { top: '0', bottom: '0' },
|
|
288
|
+
'inset-x-0': { right: '0', left: '0' },
|
|
289
|
+
'inset-y-auto': { top: 'auto', bottom: 'auto' },
|
|
290
|
+
'inset-x-auto': { right: 'auto', left: 'auto' },
|
|
291
|
+
'top-0': { top: '0' },
|
|
292
|
+
'right-0': { right: '0' },
|
|
293
|
+
'bottom-0': { bottom: '0' },
|
|
294
|
+
'left-0': { left: '0' },
|
|
295
|
+
'top-auto': { top: 'auto' },
|
|
296
|
+
'right-auto': { right: 'auto' },
|
|
297
|
+
'bottom-auto': { bottom: 'auto' },
|
|
298
|
+
'left-auto': { left: 'auto' },
|
|
299
|
+
'tracking-tighter': { letterSpacing: '-0.05em' },
|
|
300
|
+
'tracking-tight': { letterSpacing: '-0.025em' },
|
|
301
|
+
'tracking-normal': { letterSpacing: '0' },
|
|
302
|
+
'tracking-wide': { letterSpacing: '0.025em' },
|
|
303
|
+
'tracking-wider': { letterSpacing: '0.05em' },
|
|
304
|
+
'tracking-widest': { letterSpacing: '0.1em' },
|
|
305
|
+
'leading-3': { lineHeight: '.75rem' },
|
|
306
|
+
'leading-4': { lineHeight: '1rem' },
|
|
307
|
+
'leading-5': { lineHeight: '1.25rem' },
|
|
308
|
+
'leading-6': { lineHeight: '1.5rem' },
|
|
309
|
+
'leading-7': { lineHeight: '1.75rem' },
|
|
310
|
+
'leading-8': { lineHeight: '2rem' },
|
|
311
|
+
'leading-9': { lineHeight: '2.25rem' },
|
|
312
|
+
'leading-10': { lineHeight: '2.5rem' },
|
|
313
|
+
'leading-none': { lineHeight: '1' },
|
|
314
|
+
'leading-tight': { lineHeight: '1.25' },
|
|
315
|
+
'leading-snug': { lineHeight: '1.375' },
|
|
316
|
+
'leading-normal': { lineHeight: '1.5' },
|
|
317
|
+
'leading-relaxed': { lineHeight: '1.625' },
|
|
318
|
+
'leading-loose': { lineHeight: '2' },
|
|
319
|
+
'list-none': { listStyleType: 'none' },
|
|
320
|
+
'list-disc': { listStyleType: 'disc' },
|
|
321
|
+
'list-decimal': { listStyleType: 'decimal' },
|
|
322
|
+
'm-0': margin('0'),
|
|
323
|
+
'm-1': margin('0.4rem'),
|
|
324
|
+
'm-2': margin('0.8rem'),
|
|
325
|
+
'm-3': margin('1.2rem'),
|
|
326
|
+
'm-4': margin('1.6rem'),
|
|
327
|
+
'm-5': margin('2rem'),
|
|
328
|
+
'm-6': margin('2.4rem'),
|
|
329
|
+
'm-7': margin('2.8rem'),
|
|
330
|
+
'm-8': margin('3.2rem'),
|
|
331
|
+
'm-9': margin('3.6rem'),
|
|
332
|
+
'm-10': margin('4rem'),
|
|
333
|
+
'm-11': margin('4.4rem'),
|
|
334
|
+
'm-12': margin('4.8rem'),
|
|
335
|
+
'm-16': margin('6.4rem'),
|
|
336
|
+
'm-20': margin('8rem'),
|
|
337
|
+
'm-24': margin('9.6rem'),
|
|
338
|
+
'm-32': margin('12.8rem'),
|
|
339
|
+
'm-40': margin('16rem'),
|
|
340
|
+
'm-48': margin('19.2rem'),
|
|
341
|
+
'm-56': margin('22.4rem'),
|
|
342
|
+
'm-64': margin('25.6rem'),
|
|
343
|
+
'm-auto': margin('auto'),
|
|
344
|
+
'm-px': margin('1px'),
|
|
345
|
+
'-m-1': margin('-0.4rem'),
|
|
346
|
+
'-m-2': margin('-0.8rem'),
|
|
347
|
+
'-m-3': margin('-1.2rem'),
|
|
348
|
+
'-m-4': margin('-1.6rem'),
|
|
349
|
+
'-m-5': margin('-2rem'),
|
|
350
|
+
'-m-6': margin('-2.4rem'),
|
|
351
|
+
'-m-7': margin('-2.8rem'),
|
|
352
|
+
'-m-8': margin('-3.2rem'),
|
|
353
|
+
'-m-9': margin('-3.6rem'),
|
|
354
|
+
'-m-10': margin('-4rem'),
|
|
355
|
+
'-m-11': margin('-4.4rem'),
|
|
356
|
+
'-m-12': margin('-4.8rem'),
|
|
357
|
+
'-m-16': margin('-6.4rem'),
|
|
358
|
+
'-m-20': margin('-8rem'),
|
|
359
|
+
'-m-24': margin('-9.6rem'),
|
|
360
|
+
'-m-32': margin('-12.8rem'),
|
|
361
|
+
'-m-40': margin('-16rem'),
|
|
362
|
+
'-m-48': margin('-19.2rem'),
|
|
363
|
+
'-m-56': margin('-22.4rem'),
|
|
364
|
+
'-m-64': margin('-25.6rem'),
|
|
365
|
+
'-m-px': margin('-1px'),
|
|
366
|
+
'my-0': { marginTop: '0', marginBottom: '0' },
|
|
367
|
+
'mx-0': { marginLeft: '0', marginRight: '0' },
|
|
368
|
+
'my-1': { marginTop: '0.4rem', marginBottom: '0.4rem' },
|
|
369
|
+
'mx-1': { marginLeft: '0.4rem', marginRight: '0.4rem' },
|
|
370
|
+
'my-2': { marginTop: '0.8rem', marginBottom: '0.8rem' },
|
|
371
|
+
'mx-2': { marginLeft: '0.8rem', marginRight: '0.8rem' },
|
|
372
|
+
'my-3': { marginTop: '1.2rem', marginBottom: '1.2rem' },
|
|
373
|
+
'mx-3': { marginLeft: '1.2rem', marginRight: '1.2rem' },
|
|
374
|
+
'my-4': { marginTop: '1.6rem', marginBottom: '1.6rem' },
|
|
375
|
+
'mx-4': { marginLeft: '1.6rem', marginRight: '1.6rem' },
|
|
376
|
+
'my-5': { marginTop: '2rem', marginBottom: '2rem' },
|
|
377
|
+
'mx-5': { marginLeft: '2rem', marginRight: '2rem' },
|
|
378
|
+
'my-6': { marginTop: '2.4rem', marginBottom: '2.4rem' },
|
|
379
|
+
'mx-6': { marginLeft: '2.4rem', marginRight: '2.4rem' },
|
|
380
|
+
'my-7': { marginTop: '2.8rem', marginBottom: '2.8rem' },
|
|
381
|
+
'mx-7': { marginLeft: '2.8rem', marginRight: '2.8rem' },
|
|
382
|
+
'my-8': { marginTop: '3.2rem', marginBottom: '3.2rem' },
|
|
383
|
+
'mx-8': { marginLeft: '3.2rem', marginRight: '3.2rem' },
|
|
384
|
+
'my-9': { marginTop: '3.6rem', marginBottom: '3.6rem' },
|
|
385
|
+
'mx-9': { marginLeft: '3.6rem', marginRight: '3.6rem' },
|
|
386
|
+
'my-10': { marginTop: '4rem', marginBottom: '4rem' },
|
|
387
|
+
'mx-10': { marginLeft: '4rem', marginRight: '4rem' },
|
|
388
|
+
'my-11': { marginTop: '4.4rem', marginBottom: '4.4rem' },
|
|
389
|
+
'mx-11': { marginLeft: '4.4rem', marginRight: '4.4rem' },
|
|
390
|
+
'my-12': { marginTop: '4.8rem', marginBottom: '4.8rem' },
|
|
391
|
+
'mx-12': { marginLeft: '4.8rem', marginRight: '4.8rem' },
|
|
392
|
+
'my-16': { marginTop: '6.4rem', marginBottom: '6.4rem' },
|
|
393
|
+
'mx-16': { marginLeft: '6.4rem', marginRight: '6.4rem' },
|
|
394
|
+
'my-20': { marginTop: '8rem', marginBottom: '8rem' },
|
|
395
|
+
'mx-20': { marginLeft: '8rem', marginRight: '8rem' },
|
|
396
|
+
'my-24': { marginTop: '9.6rem', marginBottom: '9.6rem' },
|
|
397
|
+
'mx-24': { marginLeft: '9.6rem', marginRight: '9.6rem' },
|
|
398
|
+
'my-32': { marginTop: '12.8rem', marginBottom: '12.8rem' },
|
|
399
|
+
'mx-32': { marginLeft: '12.8rem', marginRight: '12.8rem' },
|
|
400
|
+
'my-40': { marginTop: '16rem', marginBottom: '16rem' },
|
|
401
|
+
'mx-40': { marginLeft: '16rem', marginRight: '16rem' },
|
|
402
|
+
'my-48': { marginTop: '19.2rem', marginBottom: '19.2rem' },
|
|
403
|
+
'mx-48': { marginLeft: '19.2rem', marginRight: '19.2rem' },
|
|
404
|
+
'my-56': { marginTop: '22.4rem', marginBottom: '22.4rem' },
|
|
405
|
+
'mx-56': { marginLeft: '22.4rem', marginRight: '22.4rem' },
|
|
406
|
+
'my-64': { marginTop: '25.6rem', marginBottom: '25.6rem' },
|
|
407
|
+
'mx-64': { marginLeft: '25.6rem', marginRight: '25.6rem' },
|
|
408
|
+
'my-auto': { marginTop: 'auto', marginBottom: 'auto' },
|
|
409
|
+
'mx-auto': { marginLeft: 'auto', marginRight: 'auto' },
|
|
410
|
+
'my-px': { marginTop: '1px', marginBottom: '1px' },
|
|
411
|
+
'mx-px': { marginLeft: '1px', marginRight: '1px' },
|
|
412
|
+
'-my-1': { marginTop: '-0.4rem', marginBottom: '-0.4rem' },
|
|
413
|
+
'-mx-1': { marginLeft: '-0.4rem', marginRight: '-0.4rem' },
|
|
414
|
+
'-my-2': { marginTop: '-0.8rem', marginBottom: '-0.8rem' },
|
|
415
|
+
'-mx-2': { marginLeft: '-0.8rem', marginRight: '-0.8rem' },
|
|
416
|
+
'-my-3': { marginTop: '-1.2rem', marginBottom: '-1.2rem' },
|
|
417
|
+
'-mx-3': { marginLeft: '-1.2rem', marginRight: '-1.2rem' },
|
|
418
|
+
'-my-4': { marginTop: '-1.6rem', marginBottom: '-1.6rem' },
|
|
419
|
+
'-mx-4': { marginLeft: '-1.6rem', marginRight: '-1.6rem' },
|
|
420
|
+
'-my-5': { marginTop: '-2rem', marginBottom: '-2rem' },
|
|
421
|
+
'-mx-5': { marginLeft: '-2rem', marginRight: '-2rem' },
|
|
422
|
+
'-my-6': { marginTop: '-2.4rem', marginBottom: '-2.4rem' },
|
|
423
|
+
'-mx-6': { marginLeft: '-2.4rem', marginRight: '-2.4rem' },
|
|
424
|
+
'-my-7': { marginTop: '-2.8rem', marginBottom: '-2.8rem' },
|
|
425
|
+
'-mx-7': { marginLeft: '-2.8rem', marginRight: '-2.8rem' },
|
|
426
|
+
'-my-8': { marginTop: '-3.2rem', marginBottom: '-3.2rem' },
|
|
427
|
+
'-mx-8': { marginLeft: '-3.2rem', marginRight: '-3.2rem' },
|
|
428
|
+
'-my-9': { marginTop: '-3.6rem', marginBottom: '-3.6rem' },
|
|
429
|
+
'-mx-9': { marginLeft: '-3.6rem', marginRight: '-3.6rem' },
|
|
430
|
+
'-my-10': { marginTop: '-4rem', marginBottom: '-4rem' },
|
|
431
|
+
'-mx-10': { marginLeft: '-4rem', marginRight: '-4rem' },
|
|
432
|
+
'-my-11': { marginTop: '-4.4rem', marginBottom: '-4.4rem' },
|
|
433
|
+
'-mx-11': { marginLeft: '-4.4rem', marginRight: '-4.4rem' },
|
|
434
|
+
'-my-12': { marginTop: '-4.8rem', marginBottom: '-4.8rem' },
|
|
435
|
+
'-mx-12': { marginLeft: '-4.8rem', marginRight: '-4.8rem' },
|
|
436
|
+
'-my-16': { marginTop: '-6.4rem', marginBottom: '-6.4rem' },
|
|
437
|
+
'-mx-16': { marginLeft: '-6.4rem', marginRight: '-6.4rem' },
|
|
438
|
+
'-my-20': { marginTop: '-8rem', marginBottom: '-8rem' },
|
|
439
|
+
'-mx-20': { marginLeft: '-8rem', marginRight: '-8rem' },
|
|
440
|
+
'-my-24': { marginTop: '-9.6rem', marginBottom: '-9.6rem' },
|
|
441
|
+
'-mx-24': { marginLeft: '-9.6rem', marginRight: '-9.6rem' },
|
|
442
|
+
'-my-32': { marginTop: '-12.8rem', marginBottom: '-12.8rem' },
|
|
443
|
+
'-mx-32': { marginLeft: '-12.8rem', marginRight: '-12.8rem' },
|
|
444
|
+
'-my-40': { marginTop: '-16rem', marginBottom: '-16rem' },
|
|
445
|
+
'-mx-40': { marginLeft: '-16rem', marginRight: '-16rem' },
|
|
446
|
+
'-my-48': { marginTop: '-19.2rem', marginBottom: '-19.2rem' },
|
|
447
|
+
'-mx-48': { marginLeft: '-19.2rem', marginRight: '-19.2rem' },
|
|
448
|
+
'-my-56': { marginTop: '-22.4rem', marginBottom: '-22.4rem' },
|
|
449
|
+
'-mx-56': { marginLeft: '-22.4rem', marginRight: '-22.4rem' },
|
|
450
|
+
'-my-64': { marginTop: '-25.6rem', marginBottom: '-25.6rem' },
|
|
451
|
+
'-mx-64': { marginLeft: '-25.6rem', marginRight: '-25.6rem' },
|
|
452
|
+
'-my-px': { marginTop: '-1px', marginBottom: '-1px' },
|
|
453
|
+
'-mx-px': { marginLeft: '-1px', marginRight: '-1px' },
|
|
454
|
+
'mt-0': { marginTop: '0' },
|
|
455
|
+
'mr-0': { marginRight: '0' },
|
|
456
|
+
'mb-0': { marginBottom: '0' },
|
|
457
|
+
'ml-0': { marginLeft: '0' },
|
|
458
|
+
'mt-1': { marginTop: '0.4rem' },
|
|
459
|
+
'mr-1': { marginRight: '0.4rem' },
|
|
460
|
+
'mb-1': { marginBottom: '0.4rem' },
|
|
461
|
+
'ml-1': { marginLeft: '0.4rem' },
|
|
462
|
+
'mt-2': { marginTop: '0.8rem' },
|
|
463
|
+
'mr-2': { marginRight: '0.8rem' },
|
|
464
|
+
'mb-2': { marginBottom: '0.8rem' },
|
|
465
|
+
'ml-2': { marginLeft: '0.8rem' },
|
|
466
|
+
'mt-3': { marginTop: '1.2rem' },
|
|
467
|
+
'mr-3': { marginRight: '1.2rem' },
|
|
468
|
+
'mb-3': { marginBottom: '1.2rem' },
|
|
469
|
+
'ml-3': { marginLeft: '1.2rem' },
|
|
470
|
+
'mt-4': { marginTop: '1.6rem' },
|
|
471
|
+
'mr-4': { marginRight: '1.6rem' },
|
|
472
|
+
'mb-4': { marginBottom: '1.6rem' },
|
|
473
|
+
'ml-4': { marginLeft: '1.6rem' },
|
|
474
|
+
'mt-5': { marginTop: '2rem' },
|
|
475
|
+
'mr-5': { marginRight: '2rem' },
|
|
476
|
+
'mb-5': { marginBottom: '2rem' },
|
|
477
|
+
'ml-5': { marginLeft: '2rem' },
|
|
478
|
+
'mt-6': { marginTop: '2.4rem' },
|
|
479
|
+
'mr-6': { marginRight: '2.4rem' },
|
|
480
|
+
'mb-6': { marginBottom: '2.4rem' },
|
|
481
|
+
'ml-6': { marginLeft: '2.4rem' },
|
|
482
|
+
'mt-7': { marginTop: '2.8rem' },
|
|
483
|
+
'mr-7': { marginRight: '2.8rem' },
|
|
484
|
+
'mb-7': { marginBottom: '2.8rem' },
|
|
485
|
+
'ml-7': { marginLeft: '2.8rem' },
|
|
486
|
+
'mt-8': { marginTop: '3.2rem' },
|
|
487
|
+
'mr-8': { marginRight: '3.2rem' },
|
|
488
|
+
'mb-8': { marginBottom: '3.2rem' },
|
|
489
|
+
'ml-8': { marginLeft: '3.2rem' },
|
|
490
|
+
'mt-9': { marginTop: '3.6rem' },
|
|
491
|
+
'mr-9': { marginRight: '3.6rem' },
|
|
492
|
+
'mb-9': { marginBottom: '3.6rem' },
|
|
493
|
+
'ml-9': { marginLeft: '3.6rem' },
|
|
494
|
+
'mt-10': { marginTop: '4rem' },
|
|
495
|
+
'mr-10': { marginRight: '4rem' },
|
|
496
|
+
'mb-10': { marginBottom: '4rem' },
|
|
497
|
+
'ml-10': { marginLeft: '4rem' },
|
|
498
|
+
'mt-11': { marginTop: '4.4rem' },
|
|
499
|
+
'mr-11': { marginRight: '4.4rem' },
|
|
500
|
+
'mb-11': { marginBottom: '4.4rem' },
|
|
501
|
+
'ml-11': { marginLeft: '4.4rem' },
|
|
502
|
+
'mt-12': { marginTop: '4.8rem' },
|
|
503
|
+
'mr-12': { marginRight: '4.8rem' },
|
|
504
|
+
'mb-12': { marginBottom: '4.8rem' },
|
|
505
|
+
'ml-12': { marginLeft: '4.8rem' },
|
|
506
|
+
'mt-16': { marginTop: '6.4rem' },
|
|
507
|
+
'mr-16': { marginRight: '6.4rem' },
|
|
508
|
+
'mb-16': { marginBottom: '6.4rem' },
|
|
509
|
+
'ml-16': { marginLeft: '6.4rem' },
|
|
510
|
+
'mt-20': { marginTop: '8rem' },
|
|
511
|
+
'mr-20': { marginRight: '8rem' },
|
|
512
|
+
'mb-20': { marginBottom: '8rem' },
|
|
513
|
+
'ml-20': { marginLeft: '8rem' },
|
|
514
|
+
'mt-24': { marginTop: '9.6rem' },
|
|
515
|
+
'mr-24': { marginRight: '9.6rem' },
|
|
516
|
+
'mb-24': { marginBottom: '9.6rem' },
|
|
517
|
+
'ml-24': { marginLeft: '9.6rem' },
|
|
518
|
+
'mt-32': { marginTop: '12.8rem' },
|
|
519
|
+
'mr-32': { marginRight: '12.8rem' },
|
|
520
|
+
'mb-32': { marginBottom: '12.8rem' },
|
|
521
|
+
'ml-32': { marginLeft: '12.8rem' },
|
|
522
|
+
'mt-40': { marginTop: '16rem' },
|
|
523
|
+
'mr-40': { marginRight: '16rem' },
|
|
524
|
+
'mb-40': { marginBottom: '16rem' },
|
|
525
|
+
'ml-40': { marginLeft: '16rem' },
|
|
526
|
+
'mt-48': { marginTop: '19.2rem' },
|
|
527
|
+
'mr-48': { marginRight: '19.2rem' },
|
|
528
|
+
'mb-48': { marginBottom: '19.2rem' },
|
|
529
|
+
'ml-48': { marginLeft: '19.2rem' },
|
|
530
|
+
'mt-56': { marginTop: '22.4rem' },
|
|
531
|
+
'mr-56': { marginRight: '22.4rem' },
|
|
532
|
+
'mb-56': { marginBottom: '22.4rem' },
|
|
533
|
+
'ml-56': { marginLeft: '22.4rem' },
|
|
534
|
+
'mt-64': { marginTop: '25.6rem' },
|
|
535
|
+
'mr-64': { marginRight: '25.6rem' },
|
|
536
|
+
'mb-64': { marginBottom: '25.6rem' },
|
|
537
|
+
'ml-64': { marginLeft: '25.6rem' },
|
|
538
|
+
'mt-auto': { marginTop: 'auto' },
|
|
539
|
+
'mr-auto': { marginRight: 'auto' },
|
|
540
|
+
'mb-auto': { marginBottom: 'auto' },
|
|
541
|
+
'ml-auto': { marginLeft: 'auto' },
|
|
542
|
+
'mt-px': { marginTop: '1px' },
|
|
543
|
+
'mr-px': { marginRight: '1px' },
|
|
544
|
+
'mb-px': { marginBottom: '1px' },
|
|
545
|
+
'ml-px': { marginLeft: '1px' },
|
|
546
|
+
'-mt-1': { marginTop: '-0.4rem' },
|
|
547
|
+
'-mr-1': { marginRight: '-0.4rem' },
|
|
548
|
+
'-mb-1': { marginBottom: '-0.4rem' },
|
|
549
|
+
'-ml-1': { marginLeft: '-0.4rem' },
|
|
550
|
+
'-mt-2': { marginTop: '-0.8rem' },
|
|
551
|
+
'-mr-2': { marginRight: '-0.8rem' },
|
|
552
|
+
'-mb-2': { marginBottom: '-0.8rem' },
|
|
553
|
+
'-ml-2': { marginLeft: '-0.8rem' },
|
|
554
|
+
'-mt-3': { marginTop: '-1.2rem' },
|
|
555
|
+
'-mr-3': { marginRight: '-1.2rem' },
|
|
556
|
+
'-mb-3': { marginBottom: '-1.2rem' },
|
|
557
|
+
'-ml-3': { marginLeft: '-1.2rem' },
|
|
558
|
+
'-mt-4': { marginTop: '-1.6rem' },
|
|
559
|
+
'-mr-4': { marginRight: '-1.6rem' },
|
|
560
|
+
'-mb-4': { marginBottom: '-1.6rem' },
|
|
561
|
+
'-ml-4': { marginLeft: '-1.6rem' },
|
|
562
|
+
'-mt-5': { marginTop: '-2rem' },
|
|
563
|
+
'-mr-5': { marginRight: '-2rem' },
|
|
564
|
+
'-mb-5': { marginBottom: '-2rem' },
|
|
565
|
+
'-ml-5': { marginLeft: '-2rem' },
|
|
566
|
+
'-mt-6': { marginTop: '-2.4rem' },
|
|
567
|
+
'-mr-6': { marginRight: '-2.4rem' },
|
|
568
|
+
'-mb-6': { marginBottom: '-2.4rem' },
|
|
569
|
+
'-ml-6': { marginLeft: '-2.4rem' },
|
|
570
|
+
'-mt-7': { marginTop: '-2.8rem' },
|
|
571
|
+
'-mr-7': { marginRight: '-2.8rem' },
|
|
572
|
+
'-mb-7': { marginBottom: '-2.8rem' },
|
|
573
|
+
'-ml-7': { marginLeft: '-2.8rem' },
|
|
574
|
+
'-mt-8': { marginTop: '-3.2rem' },
|
|
575
|
+
'-mr-8': { marginRight: '-3.2rem' },
|
|
576
|
+
'-mb-8': { marginBottom: '-3.2rem' },
|
|
577
|
+
'-ml-8': { marginLeft: '-3.2rem' },
|
|
578
|
+
'-mt-9': { marginTop: '-3.6rem' },
|
|
579
|
+
'-mr-9': { marginRight: '-3.6rem' },
|
|
580
|
+
'-mb-9': { marginBottom: '-3.6rem' },
|
|
581
|
+
'-ml-9': { marginLeft: '-3.6rem' },
|
|
582
|
+
'-mt-10': { marginTop: '-4rem' },
|
|
583
|
+
'-mr-10': { marginRight: '-4rem' },
|
|
584
|
+
'-mb-10': { marginBottom: '-4rem' },
|
|
585
|
+
'-ml-10': { marginLeft: '-4rem' },
|
|
586
|
+
'-mt-11': { marginTop: '-4.4rem' },
|
|
587
|
+
'-mr-11': { marginRight: '-4.4rem' },
|
|
588
|
+
'-mb-11': { marginBottom: '-4.4rem' },
|
|
589
|
+
'-ml-11': { marginLeft: '-4.4rem' },
|
|
590
|
+
'-mt-12': { marginTop: '-4.8rem' },
|
|
591
|
+
'-mr-12': { marginRight: '-4.8rem' },
|
|
592
|
+
'-mb-12': { marginBottom: '-4.8rem' },
|
|
593
|
+
'-ml-12': { marginLeft: '-4.8rem' },
|
|
594
|
+
'-mt-16': { marginTop: '-6.4rem' },
|
|
595
|
+
'-mr-16': { marginRight: '-6.4rem' },
|
|
596
|
+
'-mb-16': { marginBottom: '-6.4rem' },
|
|
597
|
+
'-ml-16': { marginLeft: '-6.4rem' },
|
|
598
|
+
'-mt-20': { marginTop: '-8rem' },
|
|
599
|
+
'-mr-20': { marginRight: '-8rem' },
|
|
600
|
+
'-mb-20': { marginBottom: '-8rem' },
|
|
601
|
+
'-ml-20': { marginLeft: '-8rem' },
|
|
602
|
+
'-mt-24': { marginTop: '-9.6rem' },
|
|
603
|
+
'-mr-24': { marginRight: '-9.6rem' },
|
|
604
|
+
'-mb-24': { marginBottom: '-9.6rem' },
|
|
605
|
+
'-ml-24': { marginLeft: '-9.6rem' },
|
|
606
|
+
'-mt-32': { marginTop: '-12.8rem' },
|
|
607
|
+
'-mr-32': { marginRight: '-12.8rem' },
|
|
608
|
+
'-mb-32': { marginBottom: '-12.8rem' },
|
|
609
|
+
'-ml-32': { marginLeft: '-12.8rem' },
|
|
610
|
+
'-mt-40': { marginTop: '-16rem' },
|
|
611
|
+
'-mr-40': { marginRight: '-16rem' },
|
|
612
|
+
'-mb-40': { marginBottom: '-16rem' },
|
|
613
|
+
'-ml-40': { marginLeft: '-16rem' },
|
|
614
|
+
'-mt-48': { marginTop: '-19.2rem' },
|
|
615
|
+
'-mr-48': { marginRight: '-19.2rem' },
|
|
616
|
+
'-mb-48': { marginBottom: '-19.2rem' },
|
|
617
|
+
'-ml-48': { marginLeft: '-19.2rem' },
|
|
618
|
+
'-mt-56': { marginTop: '-22.4rem' },
|
|
619
|
+
'-mr-56': { marginRight: '-22.4rem' },
|
|
620
|
+
'-mb-56': { marginBottom: '-22.4rem' },
|
|
621
|
+
'-ml-56': { marginLeft: '-22.4rem' },
|
|
622
|
+
'-mt-64': { marginTop: '-25.6rem' },
|
|
623
|
+
'-mr-64': { marginRight: '-25.6rem' },
|
|
624
|
+
'-mb-64': { marginBottom: '-25.6rem' },
|
|
625
|
+
'-ml-64': { marginLeft: '-25.6rem' },
|
|
626
|
+
'-mt-px': { marginTop: '-1px' },
|
|
627
|
+
'-mr-px': { marginRight: '-1px' },
|
|
628
|
+
'-mb-px': { marginBottom: '-1px' },
|
|
629
|
+
'-ml-px': { marginLeft: '-1px' },
|
|
630
|
+
'max-h-full': { maxHeight: '100%' },
|
|
631
|
+
'max-h-screen': { maxHeight: '100vh' },
|
|
632
|
+
'max-w-none': { maxWidth: 'none' },
|
|
633
|
+
'max-w-xs': { maxWidth: '20rem' },
|
|
634
|
+
'max-w-sm': { maxWidth: '24rem' },
|
|
635
|
+
'max-w-md': { maxWidth: '28rem' },
|
|
636
|
+
'max-w-lg': { maxWidth: '32rem' },
|
|
637
|
+
'max-w-xl': { maxWidth: '36rem' },
|
|
638
|
+
'max-w-2xl': { maxWidth: '42rem' },
|
|
639
|
+
'max-w-3xl': { maxWidth: '48rem' },
|
|
640
|
+
'max-w-4xl': { maxWidth: '56rem' },
|
|
641
|
+
'max-w-5xl': { maxWidth: '64rem' },
|
|
642
|
+
'max-w-6xl': { maxWidth: '72rem' },
|
|
643
|
+
'max-w-full': { maxWidth: '100%' },
|
|
644
|
+
'max-w-screen-sm': { maxWidth: '640px' },
|
|
645
|
+
'max-w-screen-md': { maxWidth: '768px' },
|
|
646
|
+
'max-w-screen-lg': { maxWidth: '1024px' },
|
|
647
|
+
'max-w-screen-xl': { maxWidth: '1280px' },
|
|
648
|
+
'min-h-0': { minHeight: '0' },
|
|
649
|
+
'min-h-full': { minHeight: '100%' },
|
|
650
|
+
'min-h-screen': { minHeight: '100vh' },
|
|
651
|
+
'min-w-0': { minWidth: '0' },
|
|
652
|
+
'min-w-full': { minWidth: '100%' },
|
|
653
|
+
'object-bottom': { objectPosition: 'bottom' },
|
|
654
|
+
'object-center': { objectPosition: 'center' },
|
|
655
|
+
'object-left': { objectPosition: 'left' },
|
|
656
|
+
'object-left-bottom': { objectPosition: 'left bottom' },
|
|
657
|
+
'object-left-top': { objectPosition: 'left top' },
|
|
658
|
+
'object-right': { objectPosition: 'right' },
|
|
659
|
+
'object-right-bottom': { objectPosition: 'right bottom' },
|
|
660
|
+
'object-right-top': { objectPosition: 'right top' },
|
|
661
|
+
'object-top': { objectPosition: 'top' },
|
|
662
|
+
'opacity-0': { opacity: '0' },
|
|
663
|
+
'opacity-5': { opacity: '0.05' },
|
|
664
|
+
'opacity-10': { opacity: '0.1' },
|
|
665
|
+
'opacity-15': { opacity: '0.15' },
|
|
666
|
+
'opacity-20': { opacity: '0.2' },
|
|
667
|
+
'opacity-25': { opacity: '0.25' },
|
|
668
|
+
'opacity-30': { opacity: '0.3' },
|
|
669
|
+
'opacity-40': { opacity: '0.4' },
|
|
670
|
+
'opacity-50': { opacity: '0.5' },
|
|
671
|
+
'opacity-60': { opacity: '0.6' },
|
|
672
|
+
'opacity-70': { opacity: '0.7' },
|
|
673
|
+
'opacity-75': { opacity: '0.75' },
|
|
674
|
+
'opacity-80': { opacity: '0.8' },
|
|
675
|
+
'opacity-90': { opacity: '0.9' },
|
|
676
|
+
'opacity-100': { opacity: '1' },
|
|
677
|
+
'order-1': { order: '1' },
|
|
678
|
+
'order-2': { order: '2' },
|
|
679
|
+
'order-3': { order: '3' },
|
|
680
|
+
'order-4': { order: '4' },
|
|
681
|
+
'order-5': { order: '5' },
|
|
682
|
+
'order-6': { order: '6' },
|
|
683
|
+
'order-7': { order: '7' },
|
|
684
|
+
'order-8': { order: '8' },
|
|
685
|
+
'order-9': { order: '9' },
|
|
686
|
+
'order-10': { order: '10' },
|
|
687
|
+
'order-11': { order: '11' },
|
|
688
|
+
'order-12': { order: '12' },
|
|
689
|
+
'order-13': { order: '13' },
|
|
690
|
+
'order-14': { order: '14' },
|
|
691
|
+
'order-15': { order: '15' },
|
|
692
|
+
'order-16': { order: '16' },
|
|
693
|
+
'order-17': { order: '17' },
|
|
694
|
+
'order-18': { order: '18' },
|
|
695
|
+
'order-19': { order: '19' },
|
|
696
|
+
'order-20': { order: '20' },
|
|
697
|
+
'order-21': { order: '21' },
|
|
698
|
+
'order-22': { order: '22' },
|
|
699
|
+
'order-23': { order: '23' },
|
|
700
|
+
'order-24': { order: '24' },
|
|
701
|
+
'order-first': { order: '-9999' },
|
|
702
|
+
'order-last': { order: '9999' },
|
|
703
|
+
'order-none': { order: '0' },
|
|
704
|
+
'p-0': padding('0'),
|
|
705
|
+
'p-1': padding('0.4rem'),
|
|
706
|
+
'p-2': padding('0.8rem'),
|
|
707
|
+
'p-3': padding('1.2rem'),
|
|
708
|
+
'p-4': padding('1.6rem'),
|
|
709
|
+
'p-5': padding('2rem'),
|
|
710
|
+
'p-6': padding('2.4rem'),
|
|
711
|
+
'p-7': padding('2.8rem'),
|
|
712
|
+
'p-8': padding('3.2rem'),
|
|
713
|
+
'p-9': padding('3.6rem'),
|
|
714
|
+
'p-10': padding('4rem'),
|
|
715
|
+
'p-11': padding('4.4rem'),
|
|
716
|
+
'p-12': padding('4.8rem'),
|
|
717
|
+
'p-16': padding('6.4rem'),
|
|
718
|
+
'p-20': padding('8rem'),
|
|
719
|
+
'p-24': padding('9.6rem'),
|
|
720
|
+
'p-32': padding('12.8rem'),
|
|
721
|
+
'p-40': padding('16rem'),
|
|
722
|
+
'p-48': padding('19.2rem'),
|
|
723
|
+
'p-56': padding('22.4rem'),
|
|
724
|
+
'p-64': padding('25.6rem'),
|
|
725
|
+
'p-px': padding('1px'),
|
|
726
|
+
'py-0': { paddingTop: '0', paddingBottom: '0' },
|
|
727
|
+
'px-0': { paddingLeft: '0', paddingRight: '0' },
|
|
728
|
+
'py-1': { paddingTop: '0.4rem', paddingBottom: '0.4rem' },
|
|
729
|
+
'px-1': { paddingLeft: '0.4rem', paddingRight: '0.4rem' },
|
|
730
|
+
'py-2': { paddingTop: '0.8rem', paddingBottom: '0.8rem' },
|
|
731
|
+
'px-2': { paddingLeft: '0.8rem', paddingRight: '0.8rem' },
|
|
732
|
+
'py-3': { paddingTop: '1.2rem', paddingBottom: '1.2rem' },
|
|
733
|
+
'px-3': { paddingLeft: '1.2rem', paddingRight: '1.2rem' },
|
|
734
|
+
'py-4': { paddingTop: '1.6rem', paddingBottom: '1.6rem' },
|
|
735
|
+
'px-4': { paddingLeft: '1.6rem', paddingRight: '1.6rem' },
|
|
736
|
+
'py-5': { paddingTop: '2rem', paddingBottom: '2rem' },
|
|
737
|
+
'px-5': { paddingLeft: '2rem', paddingRight: '2rem' },
|
|
738
|
+
'py-6': { paddingTop: '2.4rem', paddingBottom: '2.4rem' },
|
|
739
|
+
'px-6': { paddingLeft: '2.4rem', paddingRight: '2.4rem' },
|
|
740
|
+
'py-7': { paddingTop: '2.8rem', paddingBottom: '2.8rem' },
|
|
741
|
+
'px-7': { paddingLeft: '2.8rem', paddingRight: '2.8rem' },
|
|
742
|
+
'py-8': { paddingTop: '3.2rem', paddingBottom: '3.2rem' },
|
|
743
|
+
'px-8': { paddingLeft: '3.2rem', paddingRight: '3.2rem' },
|
|
744
|
+
'py-9': { paddingTop: '3.6rem', paddingBottom: '3.6rem' },
|
|
745
|
+
'px-9': { paddingLeft: '3.6rem', paddingRight: '3.6rem' },
|
|
746
|
+
'py-10': { paddingTop: '4rem', paddingBottom: '4rem' },
|
|
747
|
+
'px-10': { paddingLeft: '4rem', paddingRight: '4rem' },
|
|
748
|
+
'py-11': { paddingTop: '4.4rem', paddingBottom: '4.4rem' },
|
|
749
|
+
'px-11': { paddingLeft: '4.4rem', paddingRight: '4.4rem' },
|
|
750
|
+
'py-12': { paddingTop: '4.8rem', paddingBottom: '4.8rem' },
|
|
751
|
+
'px-12': { paddingLeft: '4.8rem', paddingRight: '4.8rem' },
|
|
752
|
+
'py-16': { paddingTop: '6.4rem', paddingBottom: '6.4rem' },
|
|
753
|
+
'px-16': { paddingLeft: '6.4rem', paddingRight: '6.4rem' },
|
|
754
|
+
'py-20': { paddingTop: '8rem', paddingBottom: '8rem' },
|
|
755
|
+
'px-20': { paddingLeft: '8rem', paddingRight: '8rem' },
|
|
756
|
+
'py-24': { paddingTop: '9.6rem', paddingBottom: '9.6rem' },
|
|
757
|
+
'px-24': { paddingLeft: '9.6rem', paddingRight: '9.6rem' },
|
|
758
|
+
'py-32': { paddingTop: '12.8rem', paddingBottom: '12.8rem' },
|
|
759
|
+
'px-32': { paddingLeft: '12.8rem', paddingRight: '12.8rem' },
|
|
760
|
+
'py-40': { paddingTop: '16rem', paddingBottom: '16rem' },
|
|
761
|
+
'px-40': { paddingLeft: '16rem', paddingRight: '16rem' },
|
|
762
|
+
'py-48': { paddingTop: '19.2rem', paddingBottom: '19.2rem' },
|
|
763
|
+
'px-48': { paddingLeft: '19.2rem', paddingRight: '19.2rem' },
|
|
764
|
+
'py-56': { paddingTop: '22.4rem', paddingBottom: '22.4rem' },
|
|
765
|
+
'px-56': { paddingLeft: '22.4rem', paddingRight: '22.4rem' },
|
|
766
|
+
'py-64': { paddingTop: '25.6rem', paddingBottom: '25.6rem' },
|
|
767
|
+
'px-64': { paddingLeft: '25.6rem', paddingRight: '25.6rem' },
|
|
768
|
+
'py-px': { paddingTop: '1px', paddingBottom: '1px' },
|
|
769
|
+
'px-px': { paddingLeft: '1px', paddingRight: '1px' },
|
|
770
|
+
'pt-0': { paddingTop: '0' },
|
|
771
|
+
'pr-0': { paddingRight: '0' },
|
|
772
|
+
'pb-0': { paddingBottom: '0' },
|
|
773
|
+
'pl-0': { paddingLeft: '0' },
|
|
774
|
+
'pt-1': { paddingTop: '0.4rem' },
|
|
775
|
+
'pr-1': { paddingRight: '0.4rem' },
|
|
776
|
+
'pb-1': { paddingBottom: '0.4rem' },
|
|
777
|
+
'pl-1': { paddingLeft: '0.4rem' },
|
|
778
|
+
'pt-2': { paddingTop: '0.8rem' },
|
|
779
|
+
'pr-2': { paddingRight: '0.8rem' },
|
|
780
|
+
'pb-2': { paddingBottom: '0.8rem' },
|
|
781
|
+
'pl-2': { paddingLeft: '0.8rem' },
|
|
782
|
+
'pt-3': { paddingTop: '1.2rem' },
|
|
783
|
+
'pr-3': { paddingRight: '1.2rem' },
|
|
784
|
+
'pb-3': { paddingBottom: '1.2rem' },
|
|
785
|
+
'pl-3': { paddingLeft: '1.2rem' },
|
|
786
|
+
'pt-4': { paddingTop: '1.6rem' },
|
|
787
|
+
'pr-4': { paddingRight: '1.6rem' },
|
|
788
|
+
'pb-4': { paddingBottom: '1.6rem' },
|
|
789
|
+
'pl-4': { paddingLeft: '1.6rem' },
|
|
790
|
+
'pt-5': { paddingTop: '2rem' },
|
|
791
|
+
'pr-5': { paddingRight: '2rem' },
|
|
792
|
+
'pb-5': { paddingBottom: '2rem' },
|
|
793
|
+
'pl-5': { paddingLeft: '2rem' },
|
|
794
|
+
'pt-6': { paddingTop: '2.4rem' },
|
|
795
|
+
'pr-6': { paddingRight: '2.4rem' },
|
|
796
|
+
'pb-6': { paddingBottom: '2.4rem' },
|
|
797
|
+
'pl-6': { paddingLeft: '2.4rem' },
|
|
798
|
+
'pt-7': { paddingTop: '2.8rem' },
|
|
799
|
+
'pr-7': { paddingRight: '2.8rem' },
|
|
800
|
+
'pb-7': { paddingBottom: '2.8rem' },
|
|
801
|
+
'pl-7': { paddingLeft: '2.8rem' },
|
|
802
|
+
'pt-8': { paddingTop: '3.2rem' },
|
|
803
|
+
'pr-8': { paddingRight: '3.2rem' },
|
|
804
|
+
'pb-8': { paddingBottom: '3.2rem' },
|
|
805
|
+
'pl-8': { paddingLeft: '3.2rem' },
|
|
806
|
+
'pt-9': { paddingTop: '3.6rem' },
|
|
807
|
+
'pr-9': { paddingRight: '3.6rem' },
|
|
808
|
+
'pb-9': { paddingBottom: '3.6rem' },
|
|
809
|
+
'pl-9': { paddingLeft: '3.6rem' },
|
|
810
|
+
'pt-10': { paddingTop: '4rem' },
|
|
811
|
+
'pr-10': { paddingRight: '4rem' },
|
|
812
|
+
'pb-10': { paddingBottom: '4rem' },
|
|
813
|
+
'pl-10': { paddingLeft: '4rem' },
|
|
814
|
+
'pt-11': { paddingTop: '4.4rem' },
|
|
815
|
+
'pr-11': { paddingRight: '4.4rem' },
|
|
816
|
+
'pb-11': { paddingBottom: '4.4rem' },
|
|
817
|
+
'pl-11': { paddingLeft: '4.4rem' },
|
|
818
|
+
'pt-12': { paddingTop: '4.8rem' },
|
|
819
|
+
'pr-12': { paddingRight: '4.8rem' },
|
|
820
|
+
'pb-12': { paddingBottom: '4.8rem' },
|
|
821
|
+
'pl-12': { paddingLeft: '4.8rem' },
|
|
822
|
+
'pt-16': { paddingTop: '6.4rem' },
|
|
823
|
+
'pr-16': { paddingRight: '6.4rem' },
|
|
824
|
+
'pb-16': { paddingBottom: '6.4rem' },
|
|
825
|
+
'pl-16': { paddingLeft: '6.4rem' },
|
|
826
|
+
'pt-20': { paddingTop: '8rem' },
|
|
827
|
+
'pr-20': { paddingRight: '8rem' },
|
|
828
|
+
'pb-20': { paddingBottom: '8rem' },
|
|
829
|
+
'pl-20': { paddingLeft: '8rem' },
|
|
830
|
+
'pt-24': { paddingTop: '9.6rem' },
|
|
831
|
+
'pr-24': { paddingRight: '9.6rem' },
|
|
832
|
+
'pb-24': { paddingBottom: '9.6rem' },
|
|
833
|
+
'pl-24': { paddingLeft: '9.6rem' },
|
|
834
|
+
'pt-32': { paddingTop: '12.8rem' },
|
|
835
|
+
'pr-32': { paddingRight: '12.8rem' },
|
|
836
|
+
'pb-32': { paddingBottom: '12.8rem' },
|
|
837
|
+
'pl-32': { paddingLeft: '12.8rem' },
|
|
838
|
+
'pt-40': { paddingTop: '16rem' },
|
|
839
|
+
'pr-40': { paddingRight: '16rem' },
|
|
840
|
+
'pb-40': { paddingBottom: '16rem' },
|
|
841
|
+
'pl-40': { paddingLeft: '16rem' },
|
|
842
|
+
'pt-48': { paddingTop: '19.2rem' },
|
|
843
|
+
'pr-48': { paddingRight: '19.2rem' },
|
|
844
|
+
'pb-48': { paddingBottom: '19.2rem' },
|
|
845
|
+
'pl-48': { paddingLeft: '19.2rem' },
|
|
846
|
+
'pt-56': { paddingTop: '22.4rem' },
|
|
847
|
+
'pr-56': { paddingRight: '22.4rem' },
|
|
848
|
+
'pb-56': { paddingBottom: '22.4rem' },
|
|
849
|
+
'pl-56': { paddingLeft: '22.4rem' },
|
|
850
|
+
'pt-64': { paddingTop: '25.6rem' },
|
|
851
|
+
'pr-64': { paddingRight: '25.6rem' },
|
|
852
|
+
'pb-64': { paddingBottom: '25.6rem' },
|
|
853
|
+
'pl-64': { paddingLeft: '25.6rem' },
|
|
854
|
+
'pt-px': { paddingTop: '1px' },
|
|
855
|
+
'pr-px': { paddingRight: '1px' },
|
|
856
|
+
'pb-px': { paddingBottom: '1px' },
|
|
857
|
+
'pl-px': { paddingLeft: '1px' },
|
|
858
|
+
'stroke-current': { stroke: 'currentColor' },
|
|
859
|
+
'stroke-0': { strokeWidth: '0' },
|
|
860
|
+
'stroke-1': { strokeWidth: '1' },
|
|
861
|
+
'stroke-2': { strokeWidth: '2' },
|
|
862
|
+
'w-0': { width: '0' },
|
|
863
|
+
'w-1': { width: '0.4rem' },
|
|
864
|
+
'w-2': { width: '0.8rem' },
|
|
865
|
+
'w-3': { width: '1.2rem' },
|
|
866
|
+
'w-4': { width: '1.6rem' },
|
|
867
|
+
'w-5': { width: '2rem' },
|
|
868
|
+
'w-6': { width: '2.4rem' },
|
|
869
|
+
'w-7': { width: '2.8rem' },
|
|
870
|
+
'w-8': { width: '3.2rem' },
|
|
871
|
+
'w-9': { width: '3.6rem' },
|
|
872
|
+
'w-10': { width: '4rem' },
|
|
873
|
+
'w-11': { width: '4.4rem' },
|
|
874
|
+
'w-12': { width: '4.8rem' },
|
|
875
|
+
'w-16': { width: '6.4rem' },
|
|
876
|
+
'w-20': { width: '8rem' },
|
|
877
|
+
'w-24': { width: '9.6rem' },
|
|
878
|
+
'w-32': { width: '12.8rem' },
|
|
879
|
+
'w-40': { width: '16rem' },
|
|
880
|
+
'w-48': { width: '19.2rem' },
|
|
881
|
+
'w-56': { width: '22.4rem' },
|
|
882
|
+
'w-64': { width: '25.6rem' },
|
|
883
|
+
'w-auto': { width: 'auto' },
|
|
884
|
+
'w-px': { width: '1px' },
|
|
885
|
+
'w-1\\/2': { width: '50%' },
|
|
886
|
+
'w-1\\/3': { width: '33.333333%' },
|
|
887
|
+
'w-1\\/4': { width: '25%' },
|
|
888
|
+
'w-2\\/3': { width: '66.666667%' },
|
|
889
|
+
'w-2\\/4': { width: '50%' },
|
|
890
|
+
'w-3\\/4': { width: '75%' },
|
|
891
|
+
'w-1\\/24': { width: '4.166667%' },
|
|
892
|
+
'w-2\\/24': { width: '8.333333%' },
|
|
893
|
+
'w-3\\/24': { width: '12.5%' },
|
|
894
|
+
'w-4\\/24': { width: '16.666667%' },
|
|
895
|
+
'w-5\\/24': { width: '20.833333%' },
|
|
896
|
+
'w-6\\/24': { width: '25%' },
|
|
897
|
+
'w-7\\/24': { width: '29.166667%' },
|
|
898
|
+
'w-8\\/24': { width: '33.333333%' },
|
|
899
|
+
'w-9\\/24': { width: '37.5%' },
|
|
900
|
+
'w-10\\/24': { width: '41.666667%' },
|
|
901
|
+
'w-11\\/24': { width: '45.833333%' },
|
|
902
|
+
'w-12\\/24': { width: '50%' },
|
|
903
|
+
'w-13\\/24': { width: '54.166667%' },
|
|
904
|
+
'w-14\\/24': { width: '58.333333%' },
|
|
905
|
+
'w-15\\/24': { width: '62.5%' },
|
|
906
|
+
'w-16\\/24': { width: '66.666667%' },
|
|
907
|
+
'w-17\\/24': { width: '70.833333%' },
|
|
908
|
+
'w-18\\/24': { width: '75%' },
|
|
909
|
+
'w-19\\/24': { width: '79.166667%' },
|
|
910
|
+
'w-20\\/24': { width: '83.333333%' },
|
|
911
|
+
'w-21\\/24': { width: '87.5%' },
|
|
912
|
+
'w-22\\/24': { width: '91.666667%' },
|
|
913
|
+
'w-23\\/24': { width: '95.833333%' },
|
|
914
|
+
'w-full': { width: '100%' },
|
|
915
|
+
'z-0': { zIndex: '0' },
|
|
916
|
+
'z-10': { zIndex: '10' },
|
|
917
|
+
'z-20': { zIndex: '20' },
|
|
918
|
+
'z-30': { zIndex: '30' },
|
|
919
|
+
'z-40': { zIndex: '40' },
|
|
920
|
+
'z-50': { zIndex: '50' },
|
|
921
|
+
'z-auto': { zIndex: 'auto' },
|
|
922
|
+
'gap-0': { gridGap: '0', gap: '0' },
|
|
923
|
+
'gap-1': { gridGap: '0.4rem', gap: '0.4rem' },
|
|
924
|
+
'gap-2': { gridGap: '0.8rem', gap: '0.8rem' },
|
|
925
|
+
'gap-3': { gridGap: '1.2rem', gap: '1.2rem' },
|
|
926
|
+
'gap-4': { gridGap: '1.6rem', gap: '1.6rem' },
|
|
927
|
+
'gap-5': { gridGap: '2rem', gap: '2rem' },
|
|
928
|
+
'gap-6': { gridGap: '2.4rem', gap: '2.4rem' },
|
|
929
|
+
'gap-7': { gridGap: '2.8rem', gap: '2.8rem' },
|
|
930
|
+
'gap-8': { gridGap: '3.2rem', gap: '3.2rem' },
|
|
931
|
+
'gap-9': { gridGap: '3.6rem', gap: '3.6rem' },
|
|
932
|
+
'gap-10': { gridGap: '4rem', gap: '4rem' },
|
|
933
|
+
'gap-11': { gridGap: '4.4rem', gap: '4.4rem' },
|
|
934
|
+
'gap-12': { gridGap: '4.8rem', gap: '4.8rem' },
|
|
935
|
+
'gap-16': { gridGap: '6.4rem', gap: '6.4rem' },
|
|
936
|
+
'gap-20': { gridGap: '8rem', gap: '8rem' },
|
|
937
|
+
'gap-24': { gridGap: '9.6rem', gap: '9.6rem' },
|
|
938
|
+
'gap-32': { gridGap: '12.8rem', gap: '12.8rem' },
|
|
939
|
+
'gap-40': { gridGap: '16rem', gap: '16rem' },
|
|
940
|
+
'gap-48': { gridGap: '19.2rem', gap: '19.2rem' },
|
|
941
|
+
'gap-56': { gridGap: '22.4rem', gap: '22.4rem' },
|
|
942
|
+
'gap-64': { gridGap: '25.6rem', gap: '25.6rem' },
|
|
943
|
+
'gap-px': { gridGap: '1px', gap: '1px' },
|
|
944
|
+
'gap-x-0': { gridColumnGap: '0', columnGap: '0' },
|
|
945
|
+
'gap-x-1': { gridColumnGap: '0.4rem', columnGap: '0.4rem' },
|
|
946
|
+
'gap-x-2': { gridColumnGap: '0.8rem', columnGap: '0.8rem' },
|
|
947
|
+
'gap-x-3': { gridColumnGap: '1.2rem', columnGap: '1.2rem' },
|
|
948
|
+
'gap-x-4': { gridColumnGap: '1.6rem', columnGap: '1.6rem' },
|
|
949
|
+
'gap-x-5': { gridColumnGap: '2rem', columnGap: '2rem' },
|
|
950
|
+
'gap-x-6': { gridColumnGap: '2.4rem', columnGap: '2.4rem' },
|
|
951
|
+
'gap-x-7': { gridColumnGap: '2.8rem', columnGap: '2.8rem' },
|
|
952
|
+
'gap-x-8': { gridColumnGap: '3.2rem', columnGap: '3.2rem' },
|
|
953
|
+
'gap-x-9': { gridColumnGap: '3.6rem', columnGap: '3.6rem' },
|
|
954
|
+
'gap-x-10': { gridColumnGap: '4rem', columnGap: '4rem' },
|
|
955
|
+
'gap-x-11': { gridColumnGap: '4.4rem', columnGap: '4.4rem' },
|
|
956
|
+
'gap-x-12': { gridColumnGap: '4.8rem', columnGap: '4.8rem' },
|
|
957
|
+
'gap-x-16': { gridColumnGap: '6.4rem', columnGap: '6.4rem' },
|
|
958
|
+
'gap-x-20': { gridColumnGap: '8rem', columnGap: '8rem' },
|
|
959
|
+
'gap-x-24': { gridColumnGap: '9.6rem', columnGap: '9.6rem' },
|
|
960
|
+
'gap-x-32': { gridColumnGap: '12.8rem', columnGap: '12.8rem' },
|
|
961
|
+
'gap-x-40': { gridColumnGap: '16rem', columnGap: '16rem' },
|
|
962
|
+
'gap-x-48': { gridColumnGap: '19.2rem', columnGap: '19.2rem' },
|
|
963
|
+
'gap-x-56': { gridColumnGap: '22.4rem', columnGap: '22.4rem' },
|
|
964
|
+
'gap-x-64': { gridColumnGap: '25.6rem', columnGap: '25.6rem' },
|
|
965
|
+
'gap-x-px': { gridColumnGap: '1px', columnGap: '1px' },
|
|
966
|
+
'gap-y-0': { gridRowGap: '0', rowGap: '0' },
|
|
967
|
+
'gap-y-1': { gridRowGap: '0.4rem', rowGap: '0.4rem' },
|
|
968
|
+
'gap-y-2': { gridRowGap: '0.8rem', rowGap: '0.8rem' },
|
|
969
|
+
'gap-y-3': { gridRowGap: '1.2rem', rowGap: '1.2rem' },
|
|
970
|
+
'gap-y-4': { gridRowGap: '1.6rem', rowGap: '1.6rem' },
|
|
971
|
+
'gap-y-5': { gridRowGap: '2rem', rowGap: '2rem' },
|
|
972
|
+
'gap-y-6': { gridRowGap: '2.4rem', rowGap: '2.4rem' },
|
|
973
|
+
'gap-y-7': { gridRowGap: '2.8rem', rowGap: '2.8rem' },
|
|
974
|
+
'gap-y-8': { gridRowGap: '3.2rem', rowGap: '3.2rem' },
|
|
975
|
+
'gap-y-9': { gridRowGap: '3.6rem', rowGap: '3.6rem' },
|
|
976
|
+
'gap-y-10': { gridRowGap: '4rem', rowGap: '4rem' },
|
|
977
|
+
'gap-y-11': { gridRowGap: '4.4rem', rowGap: '4.4rem' },
|
|
978
|
+
'gap-y-12': { gridRowGap: '4.8rem', rowGap: '4.8rem' },
|
|
979
|
+
'gap-y-16': { gridRowGap: '6.4rem', rowGap: '6.4rem' },
|
|
980
|
+
'gap-y-20': { gridRowGap: '8rem', rowGap: '8rem' },
|
|
981
|
+
'gap-y-24': { gridRowGap: '9.6rem', rowGap: '9.6rem' },
|
|
982
|
+
'gap-y-32': { gridRowGap: '12.8rem', rowGap: '12.8rem' },
|
|
983
|
+
'gap-y-40': { gridRowGap: '16rem', rowGap: '16rem' },
|
|
984
|
+
'gap-y-48': { gridRowGap: '19.2rem', rowGap: '19.2rem' },
|
|
985
|
+
'gap-y-56': { gridRowGap: '22.4rem', rowGap: '22.4rem' },
|
|
986
|
+
'gap-y-64': { gridRowGap: '25.6rem', rowGap: '25.6rem' },
|
|
987
|
+
'gap-y-px': { gridRowGap: '1px', rowGap: '1px' },
|
|
988
|
+
'grid-cols-1': { gridTemplateColumns: 'repeat(1, minmax(0, 1fr))' },
|
|
989
|
+
'grid-cols-2': { gridTemplateColumns: 'repeat(2, minmax(0, 1fr))' },
|
|
990
|
+
'grid-cols-3': { gridTemplateColumns: 'repeat(3, minmax(0, 1fr))' },
|
|
991
|
+
'grid-cols-4': { gridTemplateColumns: 'repeat(4, minmax(0, 1fr))' },
|
|
992
|
+
'grid-cols-5': { gridTemplateColumns: 'repeat(5, minmax(0, 1fr))' },
|
|
993
|
+
'grid-cols-6': { gridTemplateColumns: 'repeat(6, minmax(0, 1fr))' },
|
|
994
|
+
'grid-cols-7': { gridTemplateColumns: 'repeat(7, minmax(0, 1fr))' },
|
|
995
|
+
'grid-cols-8': { gridTemplateColumns: 'repeat(8, minmax(0, 1fr))' },
|
|
996
|
+
'grid-cols-9': { gridTemplateColumns: 'repeat(9, minmax(0, 1fr))' },
|
|
997
|
+
'grid-cols-10': { gridTemplateColumns: 'repeat(10, minmax(0, 1fr))' },
|
|
998
|
+
'grid-cols-11': { gridTemplateColumns: 'repeat(11, minmax(0, 1fr))' },
|
|
999
|
+
'grid-cols-12': { gridTemplateColumns: 'repeat(12, minmax(0, 1fr))' },
|
|
1000
|
+
'grid-cols-13': { gridTemplateColumns: 'repeat(13, minmax(0, 1fr))' },
|
|
1001
|
+
'grid-cols-14': { gridTemplateColumns: 'repeat(14, minmax(0, 1fr))' },
|
|
1002
|
+
'grid-cols-15': { gridTemplateColumns: 'repeat(15, minmax(0, 1fr))' },
|
|
1003
|
+
'grid-cols-16': { gridTemplateColumns: 'repeat(16, minmax(0, 1fr))' },
|
|
1004
|
+
'grid-cols-17': { gridTemplateColumns: 'repeat(17, minmax(0, 1fr))' },
|
|
1005
|
+
'grid-cols-18': { gridTemplateColumns: 'repeat(18, minmax(0, 1fr))' },
|
|
1006
|
+
'grid-cols-19': { gridTemplateColumns: 'repeat(19, minmax(0, 1fr))' },
|
|
1007
|
+
'grid-cols-20': { gridTemplateColumns: 'repeat(20, minmax(0, 1fr))' },
|
|
1008
|
+
'grid-cols-21': { gridTemplateColumns: 'repeat(21, minmax(0, 1fr))' },
|
|
1009
|
+
'grid-cols-22': { gridTemplateColumns: 'repeat(22, minmax(0, 1fr))' },
|
|
1010
|
+
'grid-cols-23': { gridTemplateColumns: 'repeat(23, minmax(0, 1fr))' },
|
|
1011
|
+
'grid-cols-24': { gridTemplateColumns: 'repeat(24, minmax(0, 1fr))' },
|
|
1012
|
+
'grid-cols-none': { gridTemplateColumns: 'none' },
|
|
1013
|
+
'col-auto': { gridColumn: 'auto' },
|
|
1014
|
+
'col-span-1': { gridColumn: 'span 1 / span 1' },
|
|
1015
|
+
'col-span-2': { gridColumn: 'span 2 / span 2' },
|
|
1016
|
+
'col-span-3': { gridColumn: 'span 3 / span 3' },
|
|
1017
|
+
'col-span-4': { gridColumn: 'span 4 / span 4' },
|
|
1018
|
+
'col-span-5': { gridColumn: 'span 5 / span 5' },
|
|
1019
|
+
'col-span-6': { gridColumn: 'span 6 / span 6' },
|
|
1020
|
+
'col-span-7': { gridColumn: 'span 7 / span 7' },
|
|
1021
|
+
'col-span-8': { gridColumn: 'span 8 / span 8' },
|
|
1022
|
+
'col-span-9': { gridColumn: 'span 9 / span 9' },
|
|
1023
|
+
'col-span-10': { gridColumn: 'span 10 / span 10' },
|
|
1024
|
+
'col-span-11': { gridColumn: 'span 11 / span 11' },
|
|
1025
|
+
'col-span-12': { gridColumn: 'span 12 / span 12' },
|
|
1026
|
+
'col-span-13': { gridColumn: 'span 13 / span 13' },
|
|
1027
|
+
'col-span-14': { gridColumn: 'span 14 / span 14' },
|
|
1028
|
+
'col-span-15': { gridColumn: 'span 15 / span 15' },
|
|
1029
|
+
'col-span-16': { gridColumn: 'span 16 / span 16' },
|
|
1030
|
+
'col-span-17': { gridColumn: 'span 17 / span 17' },
|
|
1031
|
+
'col-span-18': { gridColumn: 'span 18 / span 18' },
|
|
1032
|
+
'col-span-19': { gridColumn: 'span 19 / span 19' },
|
|
1033
|
+
'col-span-20': { gridColumn: 'span 20 / span 20' },
|
|
1034
|
+
'col-span-21': { gridColumn: 'span 21 / span 21' },
|
|
1035
|
+
'col-span-22': { gridColumn: 'span 22 / span 22' },
|
|
1036
|
+
'col-span-23': { gridColumn: 'span 23 / span 23' },
|
|
1037
|
+
'col-span-24': { gridColumn: 'span 24 / span 24' },
|
|
1038
|
+
'col-start-1': { gridColumnStart: '1' },
|
|
1039
|
+
'col-start-2': { gridColumnStart: '2' },
|
|
1040
|
+
'col-start-3': { gridColumnStart: '3' },
|
|
1041
|
+
'col-start-4': { gridColumnStart: '4' },
|
|
1042
|
+
'col-start-5': { gridColumnStart: '5' },
|
|
1043
|
+
'col-start-6': { gridColumnStart: '6' },
|
|
1044
|
+
'col-start-7': { gridColumnStart: '7' },
|
|
1045
|
+
'col-start-8': { gridColumnStart: '8' },
|
|
1046
|
+
'col-start-9': { gridColumnStart: '9' },
|
|
1047
|
+
'col-start-10': { gridColumnStart: '10' },
|
|
1048
|
+
'col-start-11': { gridColumnStart: '11' },
|
|
1049
|
+
'col-start-12': { gridColumnStart: '12' },
|
|
1050
|
+
'col-start-13': { gridColumnStart: '13' },
|
|
1051
|
+
'col-start-14': { gridColumnStart: '14' },
|
|
1052
|
+
'col-start-15': { gridColumnStart: '15' },
|
|
1053
|
+
'col-start-16': { gridColumnStart: '16' },
|
|
1054
|
+
'col-start-17': { gridColumnStart: '17' },
|
|
1055
|
+
'col-start-18': { gridColumnStart: '18' },
|
|
1056
|
+
'col-start-19': { gridColumnStart: '19' },
|
|
1057
|
+
'col-start-20': { gridColumnStart: '20' },
|
|
1058
|
+
'col-start-21': { gridColumnStart: '21' },
|
|
1059
|
+
'col-start-22': { gridColumnStart: '22' },
|
|
1060
|
+
'col-start-23': { gridColumnStart: '23' },
|
|
1061
|
+
'col-start-24': { gridColumnStart: '24' },
|
|
1062
|
+
'col-start-auto': { gridColumnStart: 'auto' },
|
|
1063
|
+
'col-end-1': { gridColumnEnd: '1' },
|
|
1064
|
+
'col-end-2': { gridColumnEnd: '2' },
|
|
1065
|
+
'col-end-3': { gridColumnEnd: '3' },
|
|
1066
|
+
'col-end-4': { gridColumnEnd: '4' },
|
|
1067
|
+
'col-end-5': { gridColumnEnd: '5' },
|
|
1068
|
+
'col-end-6': { gridColumnEnd: '6' },
|
|
1069
|
+
'col-end-7': { gridColumnEnd: '7' },
|
|
1070
|
+
'col-end-8': { gridColumnEnd: '8' },
|
|
1071
|
+
'col-end-9': { gridColumnEnd: '9' },
|
|
1072
|
+
'col-end-10': { gridColumnEnd: '10' },
|
|
1073
|
+
'col-end-11': { gridColumnEnd: '11' },
|
|
1074
|
+
'col-end-12': { gridColumnEnd: '12' },
|
|
1075
|
+
'col-end-13': { gridColumnEnd: '13' },
|
|
1076
|
+
'col-end-14': { gridColumnEnd: '14' },
|
|
1077
|
+
'col-end-15': { gridColumnEnd: '15' },
|
|
1078
|
+
'col-end-16': { gridColumnEnd: '16' },
|
|
1079
|
+
'col-end-17': { gridColumnEnd: '17' },
|
|
1080
|
+
'col-end-18': { gridColumnEnd: '18' },
|
|
1081
|
+
'col-end-19': { gridColumnEnd: '19' },
|
|
1082
|
+
'col-end-20': { gridColumnEnd: '20' },
|
|
1083
|
+
'col-end-21': { gridColumnEnd: '21' },
|
|
1084
|
+
'col-end-22': { gridColumnEnd: '22' },
|
|
1085
|
+
'col-end-23': { gridColumnEnd: '23' },
|
|
1086
|
+
'col-end-24': { gridColumnEnd: '24' },
|
|
1087
|
+
'col-end-auto': { gridColumnEnd: 'auto' },
|
|
1088
|
+
'grid-rows-1': { gridTemplateRows: 'repeat(1, minmax(0, 1fr))' },
|
|
1089
|
+
'grid-rows-2': { gridTemplateRows: 'repeat(2, minmax(0, 1fr))' },
|
|
1090
|
+
'grid-rows-3': { gridTemplateRows: 'repeat(3, minmax(0, 1fr))' },
|
|
1091
|
+
'grid-rows-4': { gridTemplateRows: 'repeat(4, minmax(0, 1fr))' },
|
|
1092
|
+
'grid-rows-5': { gridTemplateRows: 'repeat(5, minmax(0, 1fr))' },
|
|
1093
|
+
'grid-rows-6': { gridTemplateRows: 'repeat(6, minmax(0, 1fr))' },
|
|
1094
|
+
'grid-rows-7': { gridTemplateRows: 'repeat(7, minmax(0, 1fr))' },
|
|
1095
|
+
'grid-rows-8': { gridTemplateRows: 'repeat(8, minmax(0, 1fr))' },
|
|
1096
|
+
'grid-rows-9': { gridTemplateRows: 'repeat(9, minmax(0, 1fr))' },
|
|
1097
|
+
'grid-rows-10': { gridTemplateRows: 'repeat(10, minmax(0, 1fr))' },
|
|
1098
|
+
'grid-rows-11': { gridTemplateRows: 'repeat(11, minmax(0, 1fr))' },
|
|
1099
|
+
'grid-rows-12': { gridTemplateRows: 'repeat(12, minmax(0, 1fr))' },
|
|
1100
|
+
'grid-rows-none': { gridTemplateRows: 'none' },
|
|
1101
|
+
'row-auto': { gridRow: 'auto' },
|
|
1102
|
+
'row-span-1': { gridRow: 'span 1 / span 1' },
|
|
1103
|
+
'row-span-2': { gridRow: 'span 2 / span 2' },
|
|
1104
|
+
'row-span-3': { gridRow: 'span 3 / span 3' },
|
|
1105
|
+
'row-span-4': { gridRow: 'span 4 / span 4' },
|
|
1106
|
+
'row-span-5': { gridRow: 'span 5 / span 5' },
|
|
1107
|
+
'row-span-6': { gridRow: 'span 6 / span 6' },
|
|
1108
|
+
'row-span-7': { gridRow: 'span 7 / span 7' },
|
|
1109
|
+
'row-span-8': { gridRow: 'span 8 / span 8' },
|
|
1110
|
+
'row-span-9': { gridRow: 'span 9 / span 9' },
|
|
1111
|
+
'row-span-10': { gridRow: 'span 10 / span 10' },
|
|
1112
|
+
'row-span-11': { gridRow: 'span 11 / span 11' },
|
|
1113
|
+
'row-span-12': { gridRow: 'span 12 / span 12' },
|
|
1114
|
+
'row-start-1': { gridRowStart: '1' },
|
|
1115
|
+
'row-start-2': { gridRowStart: '2' },
|
|
1116
|
+
'row-start-3': { gridRowStart: '3' },
|
|
1117
|
+
'row-start-4': { gridRowStart: '4' },
|
|
1118
|
+
'row-start-5': { gridRowStart: '5' },
|
|
1119
|
+
'row-start-6': { gridRowStart: '6' },
|
|
1120
|
+
'row-start-7': { gridRowStart: '7' },
|
|
1121
|
+
'row-start-8': { gridRowStart: '8' },
|
|
1122
|
+
'row-start-9': { gridRowStart: '9' },
|
|
1123
|
+
'row-start-10': { gridRowStart: '10' },
|
|
1124
|
+
'row-start-11': { gridRowStart: '11' },
|
|
1125
|
+
'row-start-12': { gridRowStart: '12' },
|
|
1126
|
+
'row-start-13': { gridRowStart: '13' },
|
|
1127
|
+
'row-start-auto': { gridRowStart: 'auto' },
|
|
1128
|
+
'row-end-1': { gridRowEnd: '1' },
|
|
1129
|
+
'row-end-2': { gridRowEnd: '2' },
|
|
1130
|
+
'row-end-3': { gridRowEnd: '3' },
|
|
1131
|
+
'row-end-4': { gridRowEnd: '4' },
|
|
1132
|
+
'row-end-5': { gridRowEnd: '5' },
|
|
1133
|
+
'row-end-6': { gridRowEnd: '6' },
|
|
1134
|
+
'row-end-7': { gridRowEnd: '7' },
|
|
1135
|
+
'row-end-8': { gridRowEnd: '8' },
|
|
1136
|
+
'row-end-9': { gridRowEnd: '9' },
|
|
1137
|
+
'row-end-10': { gridRowEnd: '10' },
|
|
1138
|
+
'row-end-11': { gridRowEnd: '11' },
|
|
1139
|
+
'row-end-12': { gridRowEnd: '12' },
|
|
1140
|
+
'row-end-13': { gridRowEnd: '13' },
|
|
1141
|
+
'row-end-auto': { gridRowEnd: 'auto' },
|
|
1142
|
+
'origin-center': { transformOrigin: 'center' },
|
|
1143
|
+
'origin-top': { transformOrigin: 'top' },
|
|
1144
|
+
'origin-top-right': { transformOrigin: 'top right' },
|
|
1145
|
+
'origin-right': { transformOrigin: 'right' },
|
|
1146
|
+
'origin-bottom-right': { transformOrigin: 'bottom right' },
|
|
1147
|
+
'origin-bottom': { transformOrigin: 'bottom' },
|
|
1148
|
+
'origin-bottom-left': { transformOrigin: 'bottom left' },
|
|
1149
|
+
'origin-left': { transformOrigin: 'left' },
|
|
1150
|
+
'origin-top-left': { transformOrigin: 'top left' },
|
|
1151
|
+
'scale-0': { '-TransformScaleX': '0', '-TransformScaleY': '0' },
|
|
1152
|
+
'scale-50': { '-TransformScaleX': '.5', '-TransformScaleY': '.5' },
|
|
1153
|
+
'scale-75': { '-TransformScaleX': '.75', '-TransformScaleY': '.75' },
|
|
1154
|
+
'scale-90': { '-TransformScaleX': '.9', '-TransformScaleY': '.9' },
|
|
1155
|
+
'scale-95': { '-TransformScaleX': '.95', '-TransformScaleY': '.95' },
|
|
1156
|
+
'scale-100': { '-TransformScaleX': '1', '-TransformScaleY': '1' },
|
|
1157
|
+
'scale-105': { '-TransformScaleX': '1.05', '-TransformScaleY': '1.05' },
|
|
1158
|
+
'scale-110': { '-TransformScaleX': '1.1', '-TransformScaleY': '1.1' },
|
|
1159
|
+
'scale-125': { '-TransformScaleX': '1.25', '-TransformScaleY': '1.25' },
|
|
1160
|
+
'scale-150': { '-TransformScaleX': '1.5', '-TransformScaleY': '1.5' },
|
|
1161
|
+
'scale-x-0': { '-TransformScaleX': '0' },
|
|
1162
|
+
'scale-x-50': { '-TransformScaleX': '.5' },
|
|
1163
|
+
'scale-x-75': { '-TransformScaleX': '.75' },
|
|
1164
|
+
'scale-x-90': { '-TransformScaleX': '.9' },
|
|
1165
|
+
'scale-x-95': { '-TransformScaleX': '.95' },
|
|
1166
|
+
'scale-x-100': { '-TransformScaleX': '1' },
|
|
1167
|
+
'scale-x-105': { '-TransformScaleX': '1.05' },
|
|
1168
|
+
'scale-x-110': { '-TransformScaleX': '1.1' },
|
|
1169
|
+
'scale-x-125': { '-TransformScaleX': '1.25' },
|
|
1170
|
+
'scale-x-150': { '-TransformScaleX': '1.5' },
|
|
1171
|
+
'scale-y-0': { '-TransformScaleY': '0' },
|
|
1172
|
+
'scale-y-50': { '-TransformScaleY': '.5' },
|
|
1173
|
+
'scale-y-75': { '-TransformScaleY': '.75' },
|
|
1174
|
+
'scale-y-90': { '-TransformScaleY': '.9' },
|
|
1175
|
+
'scale-y-95': { '-TransformScaleY': '.95' },
|
|
1176
|
+
'scale-y-100': { '-TransformScaleY': '1' },
|
|
1177
|
+
'scale-y-105': { '-TransformScaleY': '1.05' },
|
|
1178
|
+
'scale-y-110': { '-TransformScaleY': '1.1' },
|
|
1179
|
+
'scale-y-125': { '-TransformScaleY': '1.25' },
|
|
1180
|
+
'scale-y-150': { '-TransformScaleY': '1.5' },
|
|
1181
|
+
'rotate-0': { '-TransformRotate': '0' },
|
|
1182
|
+
'rotate-45': { '-TransformRotate': '45deg' },
|
|
1183
|
+
'rotate-90': { '-TransformRotate': '90deg' },
|
|
1184
|
+
'rotate-180': { '-TransformRotate': '180deg' },
|
|
1185
|
+
'-rotate-180': { '-TransformRotate': '-180deg' },
|
|
1186
|
+
'-rotate-90': { '-TransformRotate': '-90deg' },
|
|
1187
|
+
'-rotate-45': { '-TransformRotate': '-45deg' },
|
|
1188
|
+
'translate-x-0': { '-TransformTranslateX': '0' },
|
|
1189
|
+
'translate-x-1': { '-TransformTranslateX': '0.4rem' },
|
|
1190
|
+
'translate-x-2': { '-TransformTranslateX': '0.8rem' },
|
|
1191
|
+
'translate-x-3': { '-TransformTranslateX': '1.2rem' },
|
|
1192
|
+
'translate-x-4': { '-TransformTranslateX': '1.6rem' },
|
|
1193
|
+
'translate-x-5': { '-TransformTranslateX': '2rem' },
|
|
1194
|
+
'translate-x-6': { '-TransformTranslateX': '2.4rem' },
|
|
1195
|
+
'translate-x-7': { '-TransformTranslateX': '2.8rem' },
|
|
1196
|
+
'translate-x-8': { '-TransformTranslateX': '3.2rem' },
|
|
1197
|
+
'translate-x-9': { '-TransformTranslateX': '3.6rem' },
|
|
1198
|
+
'translate-x-10': { '-TransformTranslateX': '4rem' },
|
|
1199
|
+
'translate-x-11': { '-TransformTranslateX': '4.4rem' },
|
|
1200
|
+
'translate-x-12': { '-TransformTranslateX': '4.8rem' },
|
|
1201
|
+
'translate-x-16': { '-TransformTranslateX': '6.4rem' },
|
|
1202
|
+
'translate-x-20': { '-TransformTranslateX': '8rem' },
|
|
1203
|
+
'translate-x-24': { '-TransformTranslateX': '9.6rem' },
|
|
1204
|
+
'translate-x-32': { '-TransformTranslateX': '12.8rem' },
|
|
1205
|
+
'translate-x-40': { '-TransformTranslateX': '16rem' },
|
|
1206
|
+
'translate-x-48': { '-TransformTranslateX': '19.2rem' },
|
|
1207
|
+
'translate-x-56': { '-TransformTranslateX': '22.4rem' },
|
|
1208
|
+
'translate-x-64': { '-TransformTranslateX': '25.6rem' },
|
|
1209
|
+
'translate-x-px': { '-TransformTranslateX': '1px' },
|
|
1210
|
+
'-translate-x-1': { '-TransformTranslateX': '-0.4rem' },
|
|
1211
|
+
'-translate-x-2': { '-TransformTranslateX': '-0.8rem' },
|
|
1212
|
+
'-translate-x-3': { '-TransformTranslateX': '-1.2rem' },
|
|
1213
|
+
'-translate-x-4': { '-TransformTranslateX': '-1.6rem' },
|
|
1214
|
+
'-translate-x-5': { '-TransformTranslateX': '-2rem' },
|
|
1215
|
+
'-translate-x-6': { '-TransformTranslateX': '-2.4rem' },
|
|
1216
|
+
'-translate-x-7': { '-TransformTranslateX': '-2.8rem' },
|
|
1217
|
+
'-translate-x-8': { '-TransformTranslateX': '-3.2rem' },
|
|
1218
|
+
'-translate-x-9': { '-TransformTranslateX': '-3.6rem' },
|
|
1219
|
+
'-translate-x-10': { '-TransformTranslateX': '-4rem' },
|
|
1220
|
+
'-translate-x-11': { '-TransformTranslateX': '-4.4rem' },
|
|
1221
|
+
'-translate-x-12': { '-TransformTranslateX': '-4.8rem' },
|
|
1222
|
+
'-translate-x-16': { '-TransformTranslateX': '-6.4rem' },
|
|
1223
|
+
'-translate-x-20': { '-TransformTranslateX': '-8rem' },
|
|
1224
|
+
'-translate-x-24': { '-TransformTranslateX': '-9.6rem' },
|
|
1225
|
+
'-translate-x-32': { '-TransformTranslateX': '-12.8rem' },
|
|
1226
|
+
'-translate-x-40': { '-TransformTranslateX': '-16rem' },
|
|
1227
|
+
'-translate-x-48': { '-TransformTranslateX': '-19.2rem' },
|
|
1228
|
+
'-translate-x-56': { '-TransformTranslateX': '-22.4rem' },
|
|
1229
|
+
'-translate-x-64': { '-TransformTranslateX': '-25.6rem' },
|
|
1230
|
+
'-translate-x-px': { '-TransformTranslateX': '-1px' },
|
|
1231
|
+
'-translate-x-full': { '-TransformTranslateX': '-100%' },
|
|
1232
|
+
'-translate-x-1\\/2': { '-TransformTranslateX': '-50%' },
|
|
1233
|
+
'translate-x-1\\/2': { '-TransformTranslateX': '50%' },
|
|
1234
|
+
'translate-x-full': { '-TransformTranslateX': '100%' },
|
|
1235
|
+
'translate-y-0': { '-TransformTranslateY': '0' },
|
|
1236
|
+
'translate-y-1': { '-TransformTranslateY': '0.4rem' },
|
|
1237
|
+
'translate-y-2': { '-TransformTranslateY': '0.8rem' },
|
|
1238
|
+
'translate-y-3': { '-TransformTranslateY': '1.2rem' },
|
|
1239
|
+
'translate-y-4': { '-TransformTranslateY': '1.6rem' },
|
|
1240
|
+
'translate-y-5': { '-TransformTranslateY': '2rem' },
|
|
1241
|
+
'translate-y-6': { '-TransformTranslateY': '2.4rem' },
|
|
1242
|
+
'translate-y-7': { '-TransformTranslateY': '2.8rem' },
|
|
1243
|
+
'translate-y-8': { '-TransformTranslateY': '3.2rem' },
|
|
1244
|
+
'translate-y-9': { '-TransformTranslateY': '3.6rem' },
|
|
1245
|
+
'translate-y-10': { '-TransformTranslateY': '4rem' },
|
|
1246
|
+
'translate-y-11': { '-TransformTranslateY': '4.4rem' },
|
|
1247
|
+
'translate-y-12': { '-TransformTranslateY': '4.8rem' },
|
|
1248
|
+
'translate-y-16': { '-TransformTranslateY': '6.4rem' },
|
|
1249
|
+
'translate-y-20': { '-TransformTranslateY': '8rem' },
|
|
1250
|
+
'translate-y-24': { '-TransformTranslateY': '9.6rem' },
|
|
1251
|
+
'translate-y-32': { '-TransformTranslateY': '12.8rem' },
|
|
1252
|
+
'translate-y-40': { '-TransformTranslateY': '16rem' },
|
|
1253
|
+
'translate-y-48': { '-TransformTranslateY': '19.2rem' },
|
|
1254
|
+
'translate-y-56': { '-TransformTranslateY': '22.4rem' },
|
|
1255
|
+
'translate-y-64': { '-TransformTranslateY': '25.6rem' },
|
|
1256
|
+
'translate-y-px': { '-TransformTranslateY': '1px' },
|
|
1257
|
+
'-translate-y-1': { '-TransformTranslateY': '-0.4rem' },
|
|
1258
|
+
'-translate-y-2': { '-TransformTranslateY': '-0.8rem' },
|
|
1259
|
+
'-translate-y-3': { '-TransformTranslateY': '-1.2rem' },
|
|
1260
|
+
'-translate-y-4': { '-TransformTranslateY': '-1.6rem' },
|
|
1261
|
+
'-translate-y-5': { '-TransformTranslateY': '-2rem' },
|
|
1262
|
+
'-translate-y-6': { '-TransformTranslateY': '-2.4rem' },
|
|
1263
|
+
'-translate-y-7': { '-TransformTranslateY': '-2.8rem' },
|
|
1264
|
+
'-translate-y-8': { '-TransformTranslateY': '-3.2rem' },
|
|
1265
|
+
'-translate-y-9': { '-TransformTranslateY': '-3.6rem' },
|
|
1266
|
+
'-translate-y-10': { '-TransformTranslateY': '-4rem' },
|
|
1267
|
+
'-translate-y-11': { '-TransformTranslateY': '-4.4rem' },
|
|
1268
|
+
'-translate-y-12': { '-TransformTranslateY': '-4.8rem' },
|
|
1269
|
+
'-translate-y-16': { '-TransformTranslateY': '-6.4rem' },
|
|
1270
|
+
'-translate-y-20': { '-TransformTranslateY': '-8rem' },
|
|
1271
|
+
'-translate-y-24': { '-TransformTranslateY': '-9.6rem' },
|
|
1272
|
+
'-translate-y-32': { '-TransformTranslateY': '-12.8rem' },
|
|
1273
|
+
'-translate-y-40': { '-TransformTranslateY': '-16rem' },
|
|
1274
|
+
'-translate-y-48': { '-TransformTranslateY': '-19.2rem' },
|
|
1275
|
+
'-translate-y-56': { '-TransformTranslateY': '-22.4rem' },
|
|
1276
|
+
'-translate-y-64': { '-TransformTranslateY': '-25.6rem' },
|
|
1277
|
+
'-translate-y-px': { '-TransformTranslateY': '-1px' },
|
|
1278
|
+
'-translate-y-full': { '-TransformTranslateY': '-100%' },
|
|
1279
|
+
'-translate-y-1\\/2': { '-TransformTranslateY': '-50%' },
|
|
1280
|
+
'translate-y-1\\/2': { '-TransformTranslateY': '50%' },
|
|
1281
|
+
'translate-y-full': { '-TransformTranslateY': '100%' },
|
|
1282
|
+
'skew-x-0': { '-TransformSkewX': '0' },
|
|
1283
|
+
'skew-x-3': { '-TransformSkewX': '3deg' },
|
|
1284
|
+
'skew-x-6': { '-TransformSkewX': '6deg' },
|
|
1285
|
+
'skew-x-12': { '-TransformSkewX': '12deg' },
|
|
1286
|
+
'-skew-x-12': { '-TransformSkewX': '-12deg' },
|
|
1287
|
+
'-skew-x-6': { '-TransformSkewX': '-6deg' },
|
|
1288
|
+
'-skew-x-3': { '-TransformSkewX': '-3deg' },
|
|
1289
|
+
'skew-y-0': { '-TransformSkewY': '0' },
|
|
1290
|
+
'skew-y-3': { '-TransformSkewY': '3deg' },
|
|
1291
|
+
'skew-y-6': { '-TransformSkewY': '6deg' },
|
|
1292
|
+
'skew-y-12': { '-TransformSkewY': '12deg' },
|
|
1293
|
+
'-skew-y-12': { '-TransformSkewY': '-12deg' },
|
|
1294
|
+
'-skew-y-6': { '-TransformSkewY': '-6deg' },
|
|
1295
|
+
'-skew-y-3': { '-TransformSkewY': '-3deg' },
|
|
1296
|
+
'transition-none': { transitionProperty: 'none' },
|
|
1297
|
+
'transition-all': { transitionProperty: 'all' },
|
|
1298
|
+
transition: {
|
|
1299
|
+
transitionProperty: 'background-color, border-color, color, fill, stroke, opacity, box-shadow, transform'
|
|
1300
|
+
},
|
|
1301
|
+
'transition-colors': { transitionProperty: 'background-color, border-color, color, fill, stroke' },
|
|
1302
|
+
'transition-opacity': { transitionProperty: 'opacity' },
|
|
1303
|
+
'transition-shadow': { transitionProperty: 'box-shadow' },
|
|
1304
|
+
'transition-transform': { transitionProperty: 'transform' },
|
|
1305
|
+
'ease-linear': { transitionTimingFunction: 'linear' },
|
|
1306
|
+
'ease-in': { transitionTimingFunction: 'cubic-bezier(0.4, 0, 1, 1)' },
|
|
1307
|
+
'ease-out': { transitionTimingFunction: 'cubic-bezier(0, 0, 0.2, 1)' },
|
|
1308
|
+
'ease-in-out': { transitionTimingFunction: 'cubic-bezier(0.4, 0, 0.2, 1)' },
|
|
1309
|
+
'duration-75': { transitionDuration: '75ms' },
|
|
1310
|
+
'duration-100': { transitionDuration: '100ms' },
|
|
1311
|
+
'duration-150': { transitionDuration: '150ms' },
|
|
1312
|
+
'duration-200': { transitionDuration: '200ms' },
|
|
1313
|
+
'duration-300': { transitionDuration: '300ms' },
|
|
1314
|
+
'duration-500': { transitionDuration: '500ms' },
|
|
1315
|
+
'duration-700': { transitionDuration: '700ms' },
|
|
1316
|
+
'duration-1000': { transitionDuration: '1000ms' },
|
|
1317
|
+
'border-transparent': { borderColor: 'transparent' },
|
|
1318
|
+
'border-current': { borderColor: 'currentColor' },
|
|
1319
|
+
'border-opacity-0': { '-BorderOpacity': '0' },
|
|
1320
|
+
'border-opacity-5': { '-BorderOpacity': '0.05' },
|
|
1321
|
+
'border-opacity-10': { '-BorderOpacity': '0.1' },
|
|
1322
|
+
'border-opacity-15': { '-BorderOpacity': '0.15' },
|
|
1323
|
+
'border-opacity-20': { '-BorderOpacity': '0.2' },
|
|
1324
|
+
'border-opacity-25': { '-BorderOpacity': '0.25' },
|
|
1325
|
+
'border-opacity-30': { '-BorderOpacity': '0.3' },
|
|
1326
|
+
'border-opacity-40': { '-BorderOpacity': '0.4' },
|
|
1327
|
+
'border-opacity-50': { '-BorderOpacity': '0.5' },
|
|
1328
|
+
'border-opacity-60': { '-BorderOpacity': '0.6' },
|
|
1329
|
+
'border-opacity-70': { '-BorderOpacity': '0.7' },
|
|
1330
|
+
'border-opacity-75': { '-BorderOpacity': '0.75' },
|
|
1331
|
+
'border-opacity-80': { '-BorderOpacity': '0.8' },
|
|
1332
|
+
'border-opacity-90': { '-BorderOpacity': '0.9' },
|
|
1333
|
+
'border-opacity-100': { '-BorderOpacity': '1' },
|
|
1334
|
+
'placeholder-transparent::placeholder': { color: 'transparent' },
|
|
1335
|
+
'placeholder-current::placeholder': { color: 'currentColor' },
|
|
1336
|
+
'placeholder-opacity-0::placeholder': { '-PlaceholderOpacity': '0' },
|
|
1337
|
+
'placeholder-opacity-5::placeholder': { '-PlaceholderOpacity': '0.05' },
|
|
1338
|
+
'placeholder-opacity-10::placeholder': { '-PlaceholderOpacity': '0.1' },
|
|
1339
|
+
'placeholder-opacity-15::placeholder': { '-PlaceholderOpacity': '0.15' },
|
|
1340
|
+
'placeholder-opacity-20::placeholder': { '-PlaceholderOpacity': '0.2' },
|
|
1341
|
+
'placeholder-opacity-25::placeholder': { '-PlaceholderOpacity': '0.25' },
|
|
1342
|
+
'placeholder-opacity-30::placeholder': { '-PlaceholderOpacity': '0.3' },
|
|
1343
|
+
'placeholder-opacity-40::placeholder': { '-PlaceholderOpacity': '0.4' },
|
|
1344
|
+
'placeholder-opacity-50::placeholder': { '-PlaceholderOpacity': '0.5' },
|
|
1345
|
+
'placeholder-opacity-60::placeholder': { '-PlaceholderOpacity': '0.6' },
|
|
1346
|
+
'placeholder-opacity-70::placeholder': { '-PlaceholderOpacity': '0.7' },
|
|
1347
|
+
'placeholder-opacity-75::placeholder': { '-PlaceholderOpacity': '0.75' },
|
|
1348
|
+
'placeholder-opacity-80::placeholder': { '-PlaceholderOpacity': '0.8' },
|
|
1349
|
+
'placeholder-opacity-90::placeholder': { '-PlaceholderOpacity': '0.9' },
|
|
1350
|
+
'placeholder-opacity-100::placeholder': { '-PlaceholderOpacity': '1' },
|
|
1351
|
+
'text-transparent': { color: 'transparent' },
|
|
1352
|
+
'text-current': { color: 'currentColor' },
|
|
1353
|
+
'delay-75': { transitionDelay: '75ms' },
|
|
1354
|
+
'delay-100': { transitionDelay: '100ms' },
|
|
1355
|
+
'delay-150': { transitionDelay: '150ms' },
|
|
1356
|
+
'delay-200': { transitionDelay: '200ms' },
|
|
1357
|
+
'delay-300': { transitionDelay: '300ms' },
|
|
1358
|
+
'delay-500': { transitionDelay: '500ms' },
|
|
1359
|
+
'delay-700': { transitionDelay: '700ms' },
|
|
1360
|
+
'delay-1000': { transitionDelay: '1000ms' },
|
|
1361
|
+
'text-10': { fontSize: '1rem' },
|
|
1362
|
+
'text-11': { fontSize: '1.1rem' },
|
|
1363
|
+
'text-12': { fontSize: '1.2rem' },
|
|
1364
|
+
'text-13': { fontSize: '1.3rem' },
|
|
1365
|
+
'text-14': { fontSize: '1.4rem' },
|
|
1366
|
+
'text-16': { fontSize: '1.6rem' },
|
|
1367
|
+
'text-20': { fontSize: '2rem' },
|
|
1368
|
+
'text-24': { fontSize: '2.4rem' },
|
|
1369
|
+
'text-32': { fontSize: '3.2rem' },
|
|
1370
|
+
'text-40': { fontSize: '4rem' },
|
|
1371
|
+
'text-56': { fontSize: '5.6rem' },
|
|
1372
|
+
'text-72': { fontSize: '7.2rem' },
|
|
1373
|
+
'sr-only': {
|
|
1374
|
+
position: 'absolute',
|
|
1375
|
+
width: '1px',
|
|
1376
|
+
height: '1px',
|
|
1377
|
+
padding: '0',
|
|
1378
|
+
margin: '-1px',
|
|
1379
|
+
overflow: 'hidden',
|
|
1380
|
+
clip: 'rect(0, 0, 0, 0)',
|
|
1381
|
+
whiteSpace: 'nowrap',
|
|
1382
|
+
borderWidth: '0'
|
|
1383
|
+
},
|
|
1384
|
+
'not-sr-only': {
|
|
1385
|
+
position: 'static',
|
|
1386
|
+
width: 'auto',
|
|
1387
|
+
height: 'auto',
|
|
1388
|
+
padding: '0',
|
|
1389
|
+
margin: '0',
|
|
1390
|
+
overflow: 'visible',
|
|
1391
|
+
clip: 'auto',
|
|
1392
|
+
whiteSpace: 'normal'
|
|
1393
|
+
},
|
|
1394
|
+
'content-center': { alignContent: 'center' },
|
|
1395
|
+
'content-start': { alignContent: 'flex-start' },
|
|
1396
|
+
'content-end': { alignContent: 'flex-end' },
|
|
1397
|
+
'content-between': { alignContent: 'space-between' },
|
|
1398
|
+
'content-around': { alignContent: 'space-around' },
|
|
1399
|
+
'content-evenly': { alignContent: 'space-evenly' },
|
|
1400
|
+
'items-start': { alignItems: 'flex-start' },
|
|
1401
|
+
'items-end': { alignItems: 'flex-end' },
|
|
1402
|
+
'items-center': { alignItems: 'center' },
|
|
1403
|
+
'items-baseline': { alignItems: 'baseline' },
|
|
1404
|
+
'items-stretch': { alignItems: 'stretch' },
|
|
1405
|
+
'self-auto': { alignSelf: 'auto' },
|
|
1406
|
+
'self-start': { alignSelf: 'flex-start' },
|
|
1407
|
+
'self-end': { alignSelf: 'flex-end' },
|
|
1408
|
+
'self-center': { alignSelf: 'center' },
|
|
1409
|
+
'self-stretch': { alignSelf: 'stretch' },
|
|
1410
|
+
'appearance-none': { appearance: 'none' },
|
|
1411
|
+
'border-solid': { borderStyle: 'solid' },
|
|
1412
|
+
'border-dashed': { borderStyle: 'dashed' },
|
|
1413
|
+
'border-dotted': { borderStyle: 'dotted' },
|
|
1414
|
+
'border-double': { borderStyle: 'double' },
|
|
1415
|
+
'border-none': { borderStyle: 'none' },
|
|
1416
|
+
'box-border': { boxSizing: 'border-box' },
|
|
1417
|
+
'box-content': { boxSizing: 'content-box' },
|
|
1418
|
+
'bg-fixed': { backgroundAttachment: 'fixed' },
|
|
1419
|
+
'bg-local': { backgroundAttachment: 'local' },
|
|
1420
|
+
'bg-scroll': { backgroundAttachment: 'scroll' },
|
|
1421
|
+
'bg-repeat': { backgroundRepeat: 'repeat' },
|
|
1422
|
+
'bg-no-repeat': { backgroundRepeat: 'no-repeat' },
|
|
1423
|
+
'bg-repeat-x': { backgroundRepeat: 'repeat-x' },
|
|
1424
|
+
'bg-repeat-y': { backgroundRepeat: 'repeat-y' },
|
|
1425
|
+
'bg-repeat-round': { backgroundRepeat: 'round' },
|
|
1426
|
+
'bg-repeat-space': { backgroundRepeat: 'space' },
|
|
1427
|
+
'border-collapse': { borderCollapse: 'collapse' },
|
|
1428
|
+
'border-separate': { borderCollapse: 'separate' },
|
|
1429
|
+
'clear-left': { clear: 'left' },
|
|
1430
|
+
'clear-right': { clear: 'right' },
|
|
1431
|
+
'clear-both': { clear: 'both' },
|
|
1432
|
+
'clear-none': { clear: 'none' },
|
|
1433
|
+
block: { display: 'block' },
|
|
1434
|
+
'inline-block': { display: 'inline-block' },
|
|
1435
|
+
inline: { display: 'inline' },
|
|
1436
|
+
flex: { display: 'flex' },
|
|
1437
|
+
'inline-flex': { display: 'inline-flex' },
|
|
1438
|
+
table: { display: 'table' },
|
|
1439
|
+
'table-caption': { display: 'table-caption' },
|
|
1440
|
+
'table-cell': { display: 'table-cell' },
|
|
1441
|
+
'table-column': { display: 'table-column' },
|
|
1442
|
+
'table-column-group': { display: 'table-column-group' },
|
|
1443
|
+
'table-footer-group': { display: 'table-footer-group' },
|
|
1444
|
+
'table-header-group': { display: 'table-header-group' },
|
|
1445
|
+
'table-row-group': { display: 'table-row-group' },
|
|
1446
|
+
'table-row': { display: 'table-row' },
|
|
1447
|
+
'flow-root': { display: 'flow-root' },
|
|
1448
|
+
grid: { display: 'grid' },
|
|
1449
|
+
'inline-grid': { display: 'inline-grid' },
|
|
1450
|
+
contents: { display: 'contents' },
|
|
1451
|
+
hidden: { display: 'none' },
|
|
1452
|
+
'flex-row': { flexDirection: 'row' },
|
|
1453
|
+
'flex-row-reverse': { flexDirection: 'row-reverse' },
|
|
1454
|
+
'flex-col': { flexDirection: 'column' },
|
|
1455
|
+
'flex-col-reverse': { flexDirection: 'column-reverse' },
|
|
1456
|
+
'flex-wrap': { flexWrap: 'wrap' },
|
|
1457
|
+
'flex-wrap-reverse': { flexWrap: 'wrap-reverse' },
|
|
1458
|
+
'flex-no-wrap': { flexWrap: 'nowrap' },
|
|
1459
|
+
'float-right': { float: 'right' },
|
|
1460
|
+
'float-left': { float: 'left' },
|
|
1461
|
+
'float-none': { float: 'none' },
|
|
1462
|
+
'clearfix:after': { content: '""', display: 'table', clear: 'both' },
|
|
1463
|
+
antialiased: { WebkitFontSmoothing: 'antialiased', MozOsxFontSmoothing: 'grayscale' },
|
|
1464
|
+
'subpixel-antialiased': { WebkitFontSmoothing: 'auto', MozOsxFontSmoothing: 'auto' },
|
|
1465
|
+
italic: { fontStyle: 'italic' },
|
|
1466
|
+
'not-italic': { fontStyle: 'normal' },
|
|
1467
|
+
'grid-flow-row': { gridAutoFlow: 'row' },
|
|
1468
|
+
'grid-flow-col': { gridAutoFlow: 'column' },
|
|
1469
|
+
'grid-flow-row-dense': { gridAutoFlow: 'row dense' },
|
|
1470
|
+
'grid-flow-col-dense': { gridAutoFlow: 'column dense' },
|
|
1471
|
+
'justify-start': { justifyContent: 'flex-start' },
|
|
1472
|
+
'justify-end': { justifyContent: 'flex-end' },
|
|
1473
|
+
'justify-center': { justifyContent: 'center' },
|
|
1474
|
+
'justify-between': { justifyContent: 'space-between' },
|
|
1475
|
+
'justify-around': { justifyContent: 'space-around' },
|
|
1476
|
+
'justify-evenly': { justifyContent: 'space-evenly' },
|
|
1477
|
+
'list-inside': { listStylePosition: 'inside' },
|
|
1478
|
+
'list-outside': { listStylePosition: 'outside' },
|
|
1479
|
+
'object-contain': { objectFit: 'contain' },
|
|
1480
|
+
'object-cover': { objectFit: 'cover' },
|
|
1481
|
+
'object-fill': { objectFit: 'fill' },
|
|
1482
|
+
'object-none': { objectFit: 'none' },
|
|
1483
|
+
'object-scale-down': { objectFit: 'scale-down' },
|
|
1484
|
+
'overflow-auto': { overflow: 'auto' },
|
|
1485
|
+
'overflow-hidden': { overflow: 'hidden' },
|
|
1486
|
+
'overflow-visible': { overflow: 'visible' },
|
|
1487
|
+
'overflow-scroll': { overflow: 'scroll' },
|
|
1488
|
+
'overflow-x-auto': { overflowX: 'auto' },
|
|
1489
|
+
'overflow-y-auto': { overflowY: 'auto' },
|
|
1490
|
+
'overflow-x-hidden': { overflowX: 'hidden' },
|
|
1491
|
+
'overflow-y-hidden': { overflowY: 'hidden' },
|
|
1492
|
+
'overflow-x-visible': { overflowX: 'visible' },
|
|
1493
|
+
'overflow-y-visible': { overflowY: 'visible' },
|
|
1494
|
+
'overflow-x-scroll': { overflowX: 'scroll' },
|
|
1495
|
+
'overflow-y-scroll': { overflowY: 'scroll' },
|
|
1496
|
+
'scrolling-touch': { WebkitOverflowScrolling: 'touch' },
|
|
1497
|
+
'scrolling-auto': { WebkitOverflowScrolling: 'auto' },
|
|
1498
|
+
'pointer-events-none': { pointerEvents: 'none' },
|
|
1499
|
+
'pointer-events-auto': { pointerEvents: 'auto' },
|
|
1500
|
+
static: { position: 'static' },
|
|
1501
|
+
fixed: { position: 'fixed' },
|
|
1502
|
+
absolute: { position: 'absolute' },
|
|
1503
|
+
relative: { position: 'relative' },
|
|
1504
|
+
sticky: { position: 'sticky' },
|
|
1505
|
+
'resize-none': { resize: 'none' },
|
|
1506
|
+
'resize-y': { resize: 'vertical' },
|
|
1507
|
+
'resize-x': { resize: 'horizontal' },
|
|
1508
|
+
resize: { resize: 'both' },
|
|
1509
|
+
'table-auto': { tableLayout: 'auto' },
|
|
1510
|
+
'table-fixed': { tableLayout: 'fixed' },
|
|
1511
|
+
'text-left': { textAlign: 'left' },
|
|
1512
|
+
'text-center': { textAlign: 'center' },
|
|
1513
|
+
'text-right': { textAlign: 'right' },
|
|
1514
|
+
'text-justify': { textAlign: 'justify' },
|
|
1515
|
+
underline: { textDecoration: 'underline' },
|
|
1516
|
+
'line-through': { textDecoration: 'line-through' },
|
|
1517
|
+
'no-underline': { textDecoration: 'none' },
|
|
1518
|
+
uppercase: { textTransform: 'uppercase' },
|
|
1519
|
+
lowercase: { textTransform: 'lowercase' },
|
|
1520
|
+
capitalize: { textTransform: 'capitalize' },
|
|
1521
|
+
'normal-case': { textTransform: 'none' },
|
|
1522
|
+
transform: {
|
|
1523
|
+
'-TransformTranslateX': '0',
|
|
1524
|
+
'-TransformTranslateY': '0',
|
|
1525
|
+
'-TransformRotate': '0',
|
|
1526
|
+
'-TransformSkewX': '0',
|
|
1527
|
+
'-TransformSkewY': '0',
|
|
1528
|
+
'-TransformScaleX': '1',
|
|
1529
|
+
'-TransformScaleY': '1',
|
|
1530
|
+
transform: 'translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))'
|
|
1531
|
+
},
|
|
1532
|
+
'transform-none': { transform: 'none' },
|
|
1533
|
+
'select-none': { userSelect: 'none' },
|
|
1534
|
+
'select-text': { userSelect: 'text' },
|
|
1535
|
+
'select-all': { userSelect: 'all' },
|
|
1536
|
+
'select-auto': { userSelect: 'auto' },
|
|
1537
|
+
'align-baseline': { verticalAlign: 'baseline' },
|
|
1538
|
+
'align-top': { verticalAlign: 'top' },
|
|
1539
|
+
'align-middle': { verticalAlign: 'middle' },
|
|
1540
|
+
'align-bottom': { verticalAlign: 'bottom' },
|
|
1541
|
+
'align-text-top': { verticalAlign: 'text-top' },
|
|
1542
|
+
'align-text-bottom': { verticalAlign: 'text-bottom' },
|
|
1543
|
+
visible: { visibility: 'visible' },
|
|
1544
|
+
invisible: { visibility: 'hidden' },
|
|
1545
|
+
'whitespace-normal': { whiteSpace: 'normal' },
|
|
1546
|
+
'whitespace-no-wrap': { whiteSpace: 'nowrap' },
|
|
1547
|
+
'whitespace-pre': { whiteSpace: 'pre' },
|
|
1548
|
+
'whitespace-pre-line': { whiteSpace: 'pre-line' },
|
|
1549
|
+
'whitespace-pre-wrap': { whiteSpace: 'pre-wrap' },
|
|
1550
|
+
'break-normal': { wordWrap: 'normal', overflowWrap: 'normal', wordBreak: 'normal' },
|
|
1551
|
+
'break-words': { wordWrap: 'break-word', overflowWrap: 'break-word' },
|
|
1552
|
+
'break-all': { wordBreak: 'break-all' },
|
|
1553
|
+
truncate: { overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap' },
|
|
1554
|
+
'tabular-nums': { fontVariantNumeric: 'tabular-nums' },
|
|
1555
|
+
'outline-offset-0': { outlineOffset: '0px' },
|
|
1556
|
+
'outline-offset-1': { outlineOffset: '1px' },
|
|
1557
|
+
'outline-offset-2': { outlineOffset: '2px' },
|
|
1558
|
+
'-outline-offset-2': { outlineOffset: '-2px' },
|
|
1559
|
+
'-outline-offset-1': { outlineOffset: '-1px' },
|
|
1560
|
+
'outline-width-1': { outlineWidth: '1px' },
|
|
1561
|
+
'outline-width-2': { outlineWidth: '2px' },
|
|
1562
|
+
'outline-none': { outlineStyle: 'none' },
|
|
1563
|
+
'outline-solid': { outlineStyle: 'solid' },
|
|
1564
|
+
'outline-dashed': { outlineStyle: 'dashed' },
|
|
1565
|
+
'outline-dotted': { outlineStyle: 'dotted' },
|
|
1566
|
+
'outline-double': { outlineStyle: 'double' },
|
|
1567
|
+
'outline-hidden': { outlineStyle: 'hidden' },
|
|
1568
|
+
'line-clamp-1': { overflow: 'hidden', display: '-webkit-box', WebkitBoxOrient: 'vertical', WebkitLineClamp: '1' },
|
|
1569
|
+
'line-clamp-2': { overflow: 'hidden', display: '-webkit-box', WebkitBoxOrient: 'vertical', WebkitLineClamp: '2' },
|
|
1570
|
+
'line-clamp-3': { overflow: 'hidden', display: '-webkit-box', WebkitBoxOrient: 'vertical', WebkitLineClamp: '3' },
|
|
1571
|
+
'line-clamp-4': { overflow: 'hidden', display: '-webkit-box', WebkitBoxOrient: 'vertical', WebkitLineClamp: '4' },
|
|
1572
|
+
'line-clamp-5': { overflow: 'hidden', display: '-webkit-box', WebkitBoxOrient: 'vertical', WebkitLineClamp: '5' },
|
|
1573
|
+
'line-clamp-6': { overflow: 'hidden', display: '-webkit-box', WebkitBoxOrient: 'vertical', WebkitLineClamp: '6' },
|
|
1574
|
+
'line-clamp-none': {
|
|
1575
|
+
overflow: 'hidden',
|
|
1576
|
+
display: '-webkit-box',
|
|
1577
|
+
WebkitBoxOrient: 'vertical',
|
|
1578
|
+
WebkitLineClamp: 'unset'
|
|
1579
|
+
}
|
|
1580
|
+
}
|
|
1581
|
+
};
|