@yurikilian/lex4 0.2.2 → 0.3.2
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/README.md +2 -3
- package/dist/components/DocumentView.d.ts.map +1 -1
- package/dist/components/PageView.d.ts.map +1 -1
- package/dist/context/document-provider.d.ts.map +1 -1
- package/dist/engine/overflow.d.ts +2 -0
- package/dist/engine/overflow.d.ts.map +1 -1
- package/dist/hooks/use-pagination.d.ts.map +1 -1
- package/dist/i18n/defaults.d.ts.map +1 -1
- package/dist/i18n/pt-BR.d.ts.map +1 -1
- package/dist/i18n/types.d.ts +36 -0
- package/dist/i18n/types.d.ts.map +1 -1
- package/dist/lex4-editor.cjs +670 -271
- package/dist/lex4-editor.cjs.map +1 -1
- package/dist/lex4-editor.js +673 -274
- package/dist/lex4-editor.js.map +1 -1
- package/dist/lexical/plugins/history-capture-plugin.d.ts.map +1 -1
- package/dist/lexical/plugins/overflow-plugin.d.ts.map +1 -1
- package/dist/lexical/utils/mid-block-split.d.ts +34 -0
- package/dist/lexical/utils/mid-block-split.d.ts.map +1 -0
- package/dist/style.css +212 -816
- package/dist/utils/editor-state-utils.d.ts +10 -0
- package/dist/utils/editor-state-utils.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
*, ::before, ::after{
|
|
1
|
+
*, ::before, ::after {
|
|
4
2
|
--tw-border-spacing-x: 0;
|
|
5
3
|
--tw-border-spacing-y: 0;
|
|
6
4
|
--tw-translate-x: 0;
|
|
@@ -53,8 +51,7 @@
|
|
|
53
51
|
--tw-contain-paint: ;
|
|
54
52
|
--tw-contain-style: ;
|
|
55
53
|
}
|
|
56
|
-
|
|
57
|
-
::backdrop{
|
|
54
|
+
::backdrop {
|
|
58
55
|
--tw-border-spacing-x: 0;
|
|
59
56
|
--tw-border-spacing-y: 0;
|
|
60
57
|
--tw-translate-x: 0;
|
|
@@ -107,1249 +104,648 @@
|
|
|
107
104
|
--tw-contain-paint: ;
|
|
108
105
|
--tw-contain-style: ;
|
|
109
106
|
}
|
|
110
|
-
|
|
111
|
-
/*
|
|
112
|
-
! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com
|
|
113
|
-
*/
|
|
114
|
-
|
|
115
|
-
/*
|
|
116
|
-
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
117
|
-
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
118
|
-
*/
|
|
119
|
-
|
|
120
|
-
*,
|
|
121
|
-
::before,
|
|
122
|
-
::after {
|
|
123
|
-
box-sizing: border-box; /* 1 */
|
|
124
|
-
border-width: 0; /* 2 */
|
|
125
|
-
border-style: solid; /* 2 */
|
|
126
|
-
border-color: #e5e7eb; /* 2 */
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
::before,
|
|
130
|
-
::after {
|
|
131
|
-
--tw-content: '';
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
/*
|
|
135
|
-
1. Use a consistent sensible line-height in all browsers.
|
|
136
|
-
2. Prevent adjustments of font size after orientation changes in iOS.
|
|
137
|
-
3. Use a more readable tab size.
|
|
138
|
-
4. Use the user's configured `sans` font-family by default.
|
|
139
|
-
5. Use the user's configured `sans` font-feature-settings by default.
|
|
140
|
-
6. Use the user's configured `sans` font-variation-settings by default.
|
|
141
|
-
7. Disable tap highlights on iOS
|
|
142
|
-
*/
|
|
143
|
-
|
|
144
|
-
html,
|
|
145
|
-
:host {
|
|
146
|
-
line-height: 1.5; /* 1 */
|
|
147
|
-
-webkit-text-size-adjust: 100%; /* 2 */
|
|
148
|
-
-moz-tab-size: 4; /* 3 */
|
|
149
|
-
-o-tab-size: 4;
|
|
150
|
-
tab-size: 4; /* 3 */
|
|
151
|
-
font-family: Inter, system-ui, -apple-system, sans-serif; /* 4 */
|
|
152
|
-
font-feature-settings: normal; /* 5 */
|
|
153
|
-
font-variation-settings: normal; /* 6 */
|
|
154
|
-
-webkit-tap-highlight-color: transparent; /* 7 */
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
/*
|
|
158
|
-
1. Remove the margin in all browsers.
|
|
159
|
-
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
|
160
|
-
*/
|
|
161
|
-
|
|
162
|
-
body {
|
|
163
|
-
margin: 0; /* 1 */
|
|
164
|
-
line-height: inherit; /* 2 */
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
/*
|
|
168
|
-
1. Add the correct height in Firefox.
|
|
169
|
-
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
170
|
-
3. Ensure horizontal rules are visible by default.
|
|
171
|
-
*/
|
|
172
|
-
|
|
173
|
-
hr {
|
|
174
|
-
height: 0; /* 1 */
|
|
175
|
-
color: inherit; /* 2 */
|
|
176
|
-
border-top-width: 1px; /* 3 */
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
/*
|
|
180
|
-
Add the correct text decoration in Chrome, Edge, and Safari.
|
|
181
|
-
*/
|
|
182
|
-
|
|
183
|
-
abbr:where([title]) {
|
|
184
|
-
-webkit-text-decoration: underline dotted;
|
|
185
|
-
text-decoration: underline dotted;
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
/*
|
|
189
|
-
Remove the default font size and weight for headings.
|
|
190
|
-
*/
|
|
191
|
-
|
|
192
|
-
h1,
|
|
193
|
-
h2,
|
|
194
|
-
h3,
|
|
195
|
-
h4,
|
|
196
|
-
h5,
|
|
197
|
-
h6 {
|
|
198
|
-
font-size: inherit;
|
|
199
|
-
font-weight: inherit;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
/*
|
|
203
|
-
Reset links to optimize for opt-in styling instead of opt-out.
|
|
204
|
-
*/
|
|
205
|
-
|
|
206
|
-
a {
|
|
207
|
-
color: inherit;
|
|
208
|
-
text-decoration: inherit;
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
/*
|
|
212
|
-
Add the correct font weight in Edge and Safari.
|
|
213
|
-
*/
|
|
214
|
-
|
|
215
|
-
b,
|
|
216
|
-
strong {
|
|
217
|
-
font-weight: bolder;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
/*
|
|
221
|
-
1. Use the user's configured `mono` font-family by default.
|
|
222
|
-
2. Use the user's configured `mono` font-feature-settings by default.
|
|
223
|
-
3. Use the user's configured `mono` font-variation-settings by default.
|
|
224
|
-
4. Correct the odd `em` font sizing in all browsers.
|
|
225
|
-
*/
|
|
226
|
-
|
|
227
|
-
code,
|
|
228
|
-
kbd,
|
|
229
|
-
samp,
|
|
230
|
-
pre {
|
|
231
|
-
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
|
|
232
|
-
font-feature-settings: normal; /* 2 */
|
|
233
|
-
font-variation-settings: normal; /* 3 */
|
|
234
|
-
font-size: 1em; /* 4 */
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
/*
|
|
238
|
-
Add the correct font size in all browsers.
|
|
239
|
-
*/
|
|
240
|
-
|
|
241
|
-
small {
|
|
242
|
-
font-size: 80%;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
/*
|
|
246
|
-
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
|
247
|
-
*/
|
|
248
|
-
|
|
249
|
-
sub,
|
|
250
|
-
sup {
|
|
251
|
-
font-size: 75%;
|
|
252
|
-
line-height: 0;
|
|
253
|
-
position: relative;
|
|
254
|
-
vertical-align: baseline;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
sub {
|
|
258
|
-
bottom: -0.25em;
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
sup {
|
|
262
|
-
top: -0.5em;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
/*
|
|
266
|
-
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
|
267
|
-
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
|
268
|
-
3. Remove gaps between table borders by default.
|
|
269
|
-
*/
|
|
270
|
-
|
|
271
|
-
table {
|
|
272
|
-
text-indent: 0; /* 1 */
|
|
273
|
-
border-color: inherit; /* 2 */
|
|
274
|
-
border-collapse: collapse; /* 3 */
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
/*
|
|
278
|
-
1. Change the font styles in all browsers.
|
|
279
|
-
2. Remove the margin in Firefox and Safari.
|
|
280
|
-
3. Remove default padding in all browsers.
|
|
281
|
-
*/
|
|
282
|
-
|
|
283
|
-
button,
|
|
284
|
-
input,
|
|
285
|
-
optgroup,
|
|
286
|
-
select,
|
|
287
|
-
textarea {
|
|
288
|
-
font-family: inherit; /* 1 */
|
|
289
|
-
font-feature-settings: inherit; /* 1 */
|
|
290
|
-
font-variation-settings: inherit; /* 1 */
|
|
291
|
-
font-size: 100%; /* 1 */
|
|
292
|
-
font-weight: inherit; /* 1 */
|
|
293
|
-
line-height: inherit; /* 1 */
|
|
294
|
-
letter-spacing: inherit; /* 1 */
|
|
295
|
-
color: inherit; /* 1 */
|
|
296
|
-
margin: 0; /* 2 */
|
|
297
|
-
padding: 0; /* 3 */
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
/*
|
|
301
|
-
Remove the inheritance of text transform in Edge and Firefox.
|
|
302
|
-
*/
|
|
303
|
-
|
|
304
|
-
button,
|
|
305
|
-
select {
|
|
306
|
-
text-transform: none;
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
/*
|
|
310
|
-
1. Correct the inability to style clickable types in iOS and Safari.
|
|
311
|
-
2. Remove default button styles.
|
|
312
|
-
*/
|
|
313
|
-
|
|
314
|
-
button,
|
|
315
|
-
input:where([type='button']),
|
|
316
|
-
input:where([type='reset']),
|
|
317
|
-
input:where([type='submit']) {
|
|
318
|
-
-webkit-appearance: button; /* 1 */
|
|
319
|
-
background-color: transparent; /* 2 */
|
|
320
|
-
background-image: none; /* 2 */
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
/*
|
|
324
|
-
Use the modern Firefox focus style for all focusable elements.
|
|
325
|
-
*/
|
|
326
|
-
|
|
327
|
-
:-moz-focusring {
|
|
328
|
-
outline: auto;
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
/*
|
|
332
|
-
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
|
333
|
-
*/
|
|
334
|
-
|
|
335
|
-
:-moz-ui-invalid {
|
|
336
|
-
box-shadow: none;
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
/*
|
|
340
|
-
Add the correct vertical alignment in Chrome and Firefox.
|
|
341
|
-
*/
|
|
342
|
-
|
|
343
|
-
progress {
|
|
344
|
-
vertical-align: baseline;
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
/*
|
|
348
|
-
Correct the cursor style of increment and decrement buttons in Safari.
|
|
349
|
-
*/
|
|
350
|
-
|
|
351
|
-
::-webkit-inner-spin-button,
|
|
352
|
-
::-webkit-outer-spin-button {
|
|
353
|
-
height: auto;
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
/*
|
|
357
|
-
1. Correct the odd appearance in Chrome and Safari.
|
|
358
|
-
2. Correct the outline style in Safari.
|
|
359
|
-
*/
|
|
360
|
-
|
|
361
|
-
[type='search'] {
|
|
362
|
-
-webkit-appearance: textfield; /* 1 */
|
|
363
|
-
outline-offset: -2px; /* 2 */
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
/*
|
|
367
|
-
Remove the inner padding in Chrome and Safari on macOS.
|
|
368
|
-
*/
|
|
369
|
-
|
|
370
|
-
::-webkit-search-decoration {
|
|
371
|
-
-webkit-appearance: none;
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
/*
|
|
375
|
-
1. Correct the inability to style clickable types in iOS and Safari.
|
|
376
|
-
2. Change font properties to `inherit` in Safari.
|
|
377
|
-
*/
|
|
378
|
-
|
|
379
|
-
::-webkit-file-upload-button {
|
|
380
|
-
-webkit-appearance: button; /* 1 */
|
|
381
|
-
font: inherit; /* 2 */
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
/*
|
|
385
|
-
Add the correct display in Chrome and Safari.
|
|
386
|
-
*/
|
|
387
|
-
|
|
388
|
-
summary {
|
|
389
|
-
display: list-item;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
/*
|
|
393
|
-
Removes the default spacing and border for appropriate elements.
|
|
394
|
-
*/
|
|
395
|
-
|
|
396
|
-
blockquote,
|
|
397
|
-
dl,
|
|
398
|
-
dd,
|
|
399
|
-
h1,
|
|
400
|
-
h2,
|
|
401
|
-
h3,
|
|
402
|
-
h4,
|
|
403
|
-
h5,
|
|
404
|
-
h6,
|
|
405
|
-
hr,
|
|
406
|
-
figure,
|
|
407
|
-
p,
|
|
408
|
-
pre {
|
|
409
|
-
margin: 0;
|
|
410
|
-
}
|
|
411
|
-
|
|
412
|
-
fieldset {
|
|
413
|
-
margin: 0;
|
|
414
|
-
padding: 0;
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
legend {
|
|
418
|
-
padding: 0;
|
|
419
|
-
}
|
|
420
|
-
|
|
421
|
-
ol,
|
|
422
|
-
ul,
|
|
423
|
-
menu {
|
|
424
|
-
list-style: none;
|
|
425
|
-
margin: 0;
|
|
426
|
-
padding: 0;
|
|
427
|
-
}
|
|
428
|
-
|
|
429
|
-
/*
|
|
430
|
-
Reset default styling for dialogs.
|
|
431
|
-
*/
|
|
432
|
-
|
|
433
|
-
dialog {
|
|
434
|
-
padding: 0;
|
|
435
|
-
}
|
|
436
|
-
|
|
437
|
-
/*
|
|
438
|
-
Prevent resizing textareas horizontally by default.
|
|
439
|
-
*/
|
|
440
|
-
|
|
441
|
-
textarea {
|
|
442
|
-
resize: vertical;
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
/*
|
|
446
|
-
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
|
447
|
-
2. Set the default placeholder color to the user's configured gray 400 color.
|
|
448
|
-
*/
|
|
449
|
-
|
|
450
|
-
input::-moz-placeholder, textarea::-moz-placeholder {
|
|
451
|
-
opacity: 1; /* 1 */
|
|
452
|
-
color: #9ca3af; /* 2 */
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
input::placeholder,
|
|
456
|
-
textarea::placeholder {
|
|
457
|
-
opacity: 1; /* 1 */
|
|
458
|
-
color: #9ca3af; /* 2 */
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
/*
|
|
462
|
-
Set the default cursor for buttons.
|
|
463
|
-
*/
|
|
464
|
-
|
|
465
|
-
button,
|
|
466
|
-
[role="button"] {
|
|
467
|
-
cursor: pointer;
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
/*
|
|
471
|
-
Make sure disabled buttons don't get the pointer cursor.
|
|
472
|
-
*/
|
|
473
|
-
|
|
474
|
-
:disabled {
|
|
475
|
-
cursor: default;
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
/*
|
|
479
|
-
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
480
|
-
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
|
481
|
-
This can trigger a poorly considered lint error in some tools but is included by design.
|
|
482
|
-
*/
|
|
483
|
-
|
|
484
|
-
img,
|
|
485
|
-
svg,
|
|
486
|
-
video,
|
|
487
|
-
canvas,
|
|
488
|
-
audio,
|
|
489
|
-
iframe,
|
|
490
|
-
embed,
|
|
491
|
-
object {
|
|
492
|
-
display: block; /* 1 */
|
|
493
|
-
vertical-align: middle; /* 2 */
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
/*
|
|
497
|
-
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
498
|
-
*/
|
|
499
|
-
|
|
500
|
-
img,
|
|
501
|
-
video {
|
|
502
|
-
max-width: 100%;
|
|
503
|
-
height: auto;
|
|
504
|
-
}
|
|
505
|
-
|
|
506
|
-
/* Make elements with the HTML hidden attribute stay hidden by default */
|
|
507
|
-
|
|
508
|
-
[hidden]:where(:not([hidden="until-found"])) {
|
|
509
|
-
display: none;
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
.\!container{
|
|
107
|
+
.\!container {
|
|
513
108
|
width: 100% !important;
|
|
514
109
|
}
|
|
515
|
-
|
|
516
|
-
.container{
|
|
110
|
+
.container {
|
|
517
111
|
width: 100%;
|
|
518
112
|
}
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
.\!container{
|
|
113
|
+
@media (min-width: 640px) {
|
|
114
|
+
.\!container {
|
|
523
115
|
max-width: 640px !important;
|
|
524
116
|
}
|
|
525
|
-
|
|
526
|
-
.container{
|
|
117
|
+
.container {
|
|
527
118
|
max-width: 640px;
|
|
528
119
|
}
|
|
529
120
|
}
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
.\!container{
|
|
121
|
+
@media (min-width: 768px) {
|
|
122
|
+
.\!container {
|
|
534
123
|
max-width: 768px !important;
|
|
535
124
|
}
|
|
536
|
-
|
|
537
|
-
.container{
|
|
125
|
+
.container {
|
|
538
126
|
max-width: 768px;
|
|
539
127
|
}
|
|
540
128
|
}
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
.\!container{
|
|
129
|
+
@media (min-width: 1024px) {
|
|
130
|
+
.\!container {
|
|
545
131
|
max-width: 1024px !important;
|
|
546
132
|
}
|
|
547
|
-
|
|
548
|
-
.container{
|
|
133
|
+
.container {
|
|
549
134
|
max-width: 1024px;
|
|
550
135
|
}
|
|
551
136
|
}
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
.\!container{
|
|
137
|
+
@media (min-width: 1280px) {
|
|
138
|
+
.\!container {
|
|
556
139
|
max-width: 1280px !important;
|
|
557
140
|
}
|
|
558
|
-
|
|
559
|
-
.container{
|
|
141
|
+
.container {
|
|
560
142
|
max-width: 1280px;
|
|
561
143
|
}
|
|
562
144
|
}
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
.\!container{
|
|
145
|
+
@media (min-width: 1536px) {
|
|
146
|
+
.\!container {
|
|
567
147
|
max-width: 1536px !important;
|
|
568
148
|
}
|
|
569
|
-
|
|
570
|
-
.container{
|
|
149
|
+
.container {
|
|
571
150
|
max-width: 1536px;
|
|
572
151
|
}
|
|
573
152
|
}
|
|
574
|
-
|
|
575
|
-
.pointer-events-none{
|
|
153
|
+
.pointer-events-none {
|
|
576
154
|
pointer-events: none;
|
|
577
155
|
}
|
|
578
|
-
|
|
579
|
-
.visible{
|
|
156
|
+
.visible {
|
|
580
157
|
visibility: visible;
|
|
581
158
|
}
|
|
582
|
-
|
|
583
|
-
.static{
|
|
159
|
+
.static {
|
|
584
160
|
position: static;
|
|
585
161
|
}
|
|
586
|
-
|
|
587
|
-
.fixed{
|
|
162
|
+
.fixed {
|
|
588
163
|
position: fixed;
|
|
589
164
|
}
|
|
590
|
-
|
|
591
|
-
.absolute{
|
|
165
|
+
.absolute {
|
|
592
166
|
position: absolute;
|
|
593
167
|
}
|
|
594
|
-
|
|
595
|
-
.relative{
|
|
168
|
+
.relative {
|
|
596
169
|
position: relative;
|
|
597
170
|
}
|
|
598
|
-
|
|
599
|
-
.sticky{
|
|
171
|
+
.sticky {
|
|
600
172
|
position: sticky;
|
|
601
173
|
}
|
|
602
|
-
|
|
603
|
-
.-left-\[9999px\]{
|
|
174
|
+
.-left-\[9999px\] {
|
|
604
175
|
left: -9999px;
|
|
605
176
|
}
|
|
606
|
-
|
|
607
|
-
.left-0{
|
|
177
|
+
.left-0 {
|
|
608
178
|
left: 0px;
|
|
609
179
|
}
|
|
610
|
-
|
|
611
|
-
.left-2\.5{
|
|
180
|
+
.left-2\.5 {
|
|
612
181
|
left: 0.625rem;
|
|
613
182
|
}
|
|
614
|
-
|
|
615
|
-
.right-2{
|
|
183
|
+
.right-2 {
|
|
616
184
|
right: 0.5rem;
|
|
617
185
|
}
|
|
618
|
-
|
|
619
|
-
.top-0{
|
|
186
|
+
.top-0 {
|
|
620
187
|
top: 0px;
|
|
621
188
|
}
|
|
622
|
-
|
|
623
|
-
.top-1\/2{
|
|
189
|
+
.top-1\/2 {
|
|
624
190
|
top: 50%;
|
|
625
191
|
}
|
|
626
|
-
|
|
627
|
-
.top-2{
|
|
192
|
+
.top-2 {
|
|
628
193
|
top: 0.5rem;
|
|
629
194
|
}
|
|
630
|
-
|
|
631
|
-
.top-full{
|
|
195
|
+
.top-full {
|
|
632
196
|
top: 100%;
|
|
633
197
|
}
|
|
634
|
-
|
|
635
|
-
.z-10{
|
|
198
|
+
.z-10 {
|
|
636
199
|
z-index: 10;
|
|
637
200
|
}
|
|
638
|
-
|
|
639
|
-
.z-50{
|
|
201
|
+
.z-50 {
|
|
640
202
|
z-index: 50;
|
|
641
203
|
}
|
|
642
|
-
|
|
643
|
-
.mx-0\.5{
|
|
204
|
+
.mx-0\.5 {
|
|
644
205
|
margin-left: 0.125rem;
|
|
645
206
|
margin-right: 0.125rem;
|
|
646
207
|
}
|
|
647
|
-
|
|
648
|
-
.my-1{
|
|
208
|
+
.my-1 {
|
|
649
209
|
margin-top: 0.25rem;
|
|
650
210
|
margin-bottom: 0.25rem;
|
|
651
211
|
}
|
|
652
|
-
|
|
653
|
-
.mb-1{
|
|
212
|
+
.mb-1 {
|
|
654
213
|
margin-bottom: 0.25rem;
|
|
655
214
|
}
|
|
656
|
-
|
|
657
|
-
.mb-2{
|
|
215
|
+
.mb-2 {
|
|
658
216
|
margin-bottom: 0.5rem;
|
|
659
217
|
}
|
|
660
|
-
|
|
661
|
-
.mb-3{
|
|
218
|
+
.mb-3 {
|
|
662
219
|
margin-bottom: 0.75rem;
|
|
663
220
|
}
|
|
664
|
-
|
|
665
|
-
.ml-6{
|
|
221
|
+
.ml-6 {
|
|
666
222
|
margin-left: 1.5rem;
|
|
667
223
|
}
|
|
668
|
-
|
|
669
|
-
.ml-auto{
|
|
224
|
+
.ml-auto {
|
|
670
225
|
margin-left: auto;
|
|
671
226
|
}
|
|
672
|
-
|
|
673
|
-
.mt-0\.5{
|
|
227
|
+
.mt-0\.5 {
|
|
674
228
|
margin-top: 0.125rem;
|
|
675
229
|
}
|
|
676
|
-
|
|
677
|
-
.mt-1{
|
|
230
|
+
.mt-1 {
|
|
678
231
|
margin-top: 0.25rem;
|
|
679
232
|
}
|
|
680
|
-
|
|
681
|
-
.block{
|
|
233
|
+
.block {
|
|
682
234
|
display: block;
|
|
683
235
|
}
|
|
684
|
-
|
|
685
|
-
.inline-block{
|
|
236
|
+
.inline-block {
|
|
686
237
|
display: inline-block;
|
|
687
238
|
}
|
|
688
|
-
|
|
689
|
-
.inline{
|
|
239
|
+
.inline {
|
|
690
240
|
display: inline;
|
|
691
241
|
}
|
|
692
|
-
|
|
693
|
-
.flex{
|
|
242
|
+
.flex {
|
|
694
243
|
display: flex;
|
|
695
244
|
}
|
|
696
|
-
|
|
697
|
-
.inline-flex{
|
|
245
|
+
.inline-flex {
|
|
698
246
|
display: inline-flex;
|
|
699
247
|
}
|
|
700
|
-
|
|
701
|
-
.grid{
|
|
248
|
+
.grid {
|
|
702
249
|
display: grid;
|
|
703
250
|
}
|
|
704
|
-
|
|
705
|
-
.list-item{
|
|
251
|
+
.list-item {
|
|
706
252
|
display: list-item;
|
|
707
253
|
}
|
|
708
|
-
|
|
709
|
-
.hidden{
|
|
254
|
+
.hidden {
|
|
710
255
|
display: none;
|
|
711
256
|
}
|
|
712
|
-
|
|
713
|
-
.h-0{
|
|
257
|
+
.h-0 {
|
|
714
258
|
height: 0px;
|
|
715
259
|
}
|
|
716
|
-
|
|
717
|
-
.h-3{
|
|
260
|
+
.h-3 {
|
|
718
261
|
height: 0.75rem;
|
|
719
262
|
}
|
|
720
|
-
|
|
721
|
-
.h-4{
|
|
263
|
+
.h-4 {
|
|
722
264
|
height: 1rem;
|
|
723
265
|
}
|
|
724
|
-
|
|
725
|
-
.h-5{
|
|
266
|
+
.h-5 {
|
|
726
267
|
height: 1.25rem;
|
|
727
268
|
}
|
|
728
|
-
|
|
729
|
-
.h-6{
|
|
269
|
+
.h-6 {
|
|
730
270
|
height: 1.5rem;
|
|
731
271
|
}
|
|
732
|
-
|
|
733
|
-
.h-7{
|
|
272
|
+
.h-7 {
|
|
734
273
|
height: 1.75rem;
|
|
735
274
|
}
|
|
736
|
-
|
|
737
|
-
.h-full{
|
|
275
|
+
.h-full {
|
|
738
276
|
height: 100%;
|
|
739
277
|
}
|
|
740
|
-
|
|
741
|
-
.h-px{
|
|
278
|
+
.h-px {
|
|
742
279
|
height: 1px;
|
|
743
280
|
}
|
|
744
|
-
|
|
745
|
-
.max-h-48{
|
|
281
|
+
.max-h-48 {
|
|
746
282
|
max-height: 12rem;
|
|
747
283
|
}
|
|
748
|
-
|
|
749
|
-
.min-h-0{
|
|
284
|
+
.min-h-0 {
|
|
750
285
|
min-height: 0px;
|
|
751
286
|
}
|
|
752
|
-
|
|
753
|
-
.min-h-\[24px\]{
|
|
287
|
+
.min-h-\[24px\] {
|
|
754
288
|
min-height: 24px;
|
|
755
289
|
}
|
|
756
|
-
|
|
757
|
-
.min-h-full{
|
|
290
|
+
.min-h-full {
|
|
758
291
|
min-height: 100%;
|
|
759
292
|
}
|
|
760
|
-
|
|
761
|
-
.w-0{
|
|
293
|
+
.w-0 {
|
|
762
294
|
width: 0px;
|
|
763
295
|
}
|
|
764
|
-
|
|
765
|
-
.w-16{
|
|
296
|
+
.w-16 {
|
|
766
297
|
width: 4rem;
|
|
767
298
|
}
|
|
768
|
-
|
|
769
|
-
.w-3{
|
|
299
|
+
.w-3 {
|
|
770
300
|
width: 0.75rem;
|
|
771
301
|
}
|
|
772
|
-
|
|
773
|
-
.w-56{
|
|
302
|
+
.w-56 {
|
|
774
303
|
width: 14rem;
|
|
775
304
|
}
|
|
776
|
-
|
|
777
|
-
.w-6{
|
|
305
|
+
.w-6 {
|
|
778
306
|
width: 1.5rem;
|
|
779
307
|
}
|
|
780
|
-
|
|
781
|
-
.w-64{
|
|
308
|
+
.w-64 {
|
|
782
309
|
width: 16rem;
|
|
783
310
|
}
|
|
784
|
-
|
|
785
|
-
.w-7{
|
|
311
|
+
.w-7 {
|
|
786
312
|
width: 1.75rem;
|
|
787
313
|
}
|
|
788
|
-
|
|
789
|
-
.w-\[320px\]{
|
|
314
|
+
.w-\[320px\] {
|
|
790
315
|
width: 320px;
|
|
791
316
|
}
|
|
792
|
-
|
|
793
|
-
.w-full{
|
|
317
|
+
.w-full {
|
|
794
318
|
width: 100%;
|
|
795
319
|
}
|
|
796
|
-
|
|
797
|
-
.w-px{
|
|
320
|
+
.w-px {
|
|
798
321
|
width: 1px;
|
|
799
322
|
}
|
|
800
|
-
|
|
801
|
-
.min-w-0{
|
|
323
|
+
.min-w-0 {
|
|
802
324
|
min-width: 0px;
|
|
803
325
|
}
|
|
804
|
-
|
|
805
|
-
.flex-1{
|
|
326
|
+
.flex-1 {
|
|
806
327
|
flex: 1 1 0%;
|
|
807
328
|
}
|
|
808
|
-
|
|
809
|
-
.flex-shrink-0{
|
|
329
|
+
.flex-shrink-0 {
|
|
810
330
|
flex-shrink: 0;
|
|
811
331
|
}
|
|
812
|
-
|
|
813
|
-
.shrink-0{
|
|
332
|
+
.shrink-0 {
|
|
814
333
|
flex-shrink: 0;
|
|
815
334
|
}
|
|
816
|
-
|
|
817
|
-
.-translate-y-1\/2{
|
|
335
|
+
.-translate-y-1\/2 {
|
|
818
336
|
--tw-translate-y: -50%;
|
|
819
337
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
820
338
|
}
|
|
821
|
-
|
|
822
|
-
.translate-x-0\.5{
|
|
339
|
+
.translate-x-0\.5 {
|
|
823
340
|
--tw-translate-x: 0.125rem;
|
|
824
341
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
825
342
|
}
|
|
826
|
-
|
|
827
|
-
.translate-x-3\.5{
|
|
343
|
+
.translate-x-3\.5 {
|
|
828
344
|
--tw-translate-x: 0.875rem;
|
|
829
345
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
830
346
|
}
|
|
831
|
-
|
|
832
|
-
.cursor-default{
|
|
347
|
+
.cursor-default {
|
|
833
348
|
cursor: default;
|
|
834
349
|
}
|
|
835
|
-
|
|
836
|
-
.cursor-not-allowed{
|
|
350
|
+
.cursor-not-allowed {
|
|
837
351
|
cursor: not-allowed;
|
|
838
352
|
}
|
|
839
|
-
|
|
840
|
-
.cursor-pointer{
|
|
353
|
+
.cursor-pointer {
|
|
841
354
|
cursor: pointer;
|
|
842
355
|
}
|
|
843
|
-
|
|
844
|
-
.select-none{
|
|
356
|
+
.select-none {
|
|
845
357
|
-webkit-user-select: none;
|
|
846
358
|
-moz-user-select: none;
|
|
847
359
|
user-select: none;
|
|
848
360
|
}
|
|
849
|
-
|
|
850
|
-
.list-decimal{
|
|
361
|
+
.list-decimal {
|
|
851
362
|
list-style-type: decimal;
|
|
852
363
|
}
|
|
853
|
-
|
|
854
|
-
.list-disc{
|
|
364
|
+
.list-disc {
|
|
855
365
|
list-style-type: disc;
|
|
856
366
|
}
|
|
857
|
-
|
|
858
|
-
.list-none{
|
|
367
|
+
.list-none {
|
|
859
368
|
list-style-type: none;
|
|
860
369
|
}
|
|
861
|
-
|
|
862
|
-
.grid-cols-2{
|
|
370
|
+
.grid-cols-2 {
|
|
863
371
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
864
372
|
}
|
|
865
|
-
|
|
866
|
-
.flex-col{
|
|
373
|
+
.flex-col {
|
|
867
374
|
flex-direction: column;
|
|
868
375
|
}
|
|
869
|
-
|
|
870
|
-
.items-start{
|
|
376
|
+
.items-start {
|
|
871
377
|
align-items: flex-start;
|
|
872
378
|
}
|
|
873
|
-
|
|
874
|
-
.items-center{
|
|
379
|
+
.items-center {
|
|
875
380
|
align-items: center;
|
|
876
381
|
}
|
|
877
|
-
|
|
878
|
-
.justify-center{
|
|
382
|
+
.justify-center {
|
|
879
383
|
justify-content: center;
|
|
880
384
|
}
|
|
881
|
-
|
|
882
|
-
.justify-between{
|
|
385
|
+
.justify-between {
|
|
883
386
|
justify-content: space-between;
|
|
884
387
|
}
|
|
885
|
-
|
|
886
|
-
.gap-0\.5{
|
|
388
|
+
.gap-0\.5 {
|
|
887
389
|
gap: 0.125rem;
|
|
888
390
|
}
|
|
889
|
-
|
|
890
|
-
.gap-1{
|
|
391
|
+
.gap-1 {
|
|
891
392
|
gap: 0.25rem;
|
|
892
393
|
}
|
|
893
|
-
|
|
894
|
-
.gap-1\.5{
|
|
394
|
+
.gap-1\.5 {
|
|
895
395
|
gap: 0.375rem;
|
|
896
396
|
}
|
|
897
|
-
|
|
898
|
-
.gap-2{
|
|
397
|
+
.gap-2 {
|
|
899
398
|
gap: 0.5rem;
|
|
900
399
|
}
|
|
901
|
-
|
|
902
|
-
.gap-8{
|
|
400
|
+
.gap-8 {
|
|
903
401
|
gap: 2rem;
|
|
904
402
|
}
|
|
905
|
-
|
|
906
|
-
.divide-y > :not([hidden]) ~ :not([hidden]){
|
|
403
|
+
.divide-y > :not([hidden]) ~ :not([hidden]) {
|
|
907
404
|
--tw-divide-y-reverse: 0;
|
|
908
405
|
border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
909
406
|
border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
|
|
910
407
|
}
|
|
911
|
-
|
|
912
|
-
.divide-gray-100 > :not([hidden]) ~ :not([hidden]){
|
|
408
|
+
.divide-gray-100 > :not([hidden]) ~ :not([hidden]) {
|
|
913
409
|
--tw-divide-opacity: 1;
|
|
914
410
|
border-color: rgb(243 244 246 / var(--tw-divide-opacity, 1));
|
|
915
411
|
}
|
|
916
|
-
|
|
917
|
-
.overflow-auto{
|
|
412
|
+
.overflow-auto {
|
|
918
413
|
overflow: auto;
|
|
919
414
|
}
|
|
920
|
-
|
|
921
|
-
.overflow-hidden{
|
|
415
|
+
.overflow-hidden {
|
|
922
416
|
overflow: hidden;
|
|
923
417
|
}
|
|
924
|
-
|
|
925
|
-
.overflow-y-auto{
|
|
418
|
+
.overflow-y-auto {
|
|
926
419
|
overflow-y: auto;
|
|
927
420
|
}
|
|
928
|
-
|
|
929
|
-
.whitespace-nowrap{
|
|
421
|
+
.whitespace-nowrap {
|
|
930
422
|
white-space: nowrap;
|
|
931
423
|
}
|
|
932
|
-
|
|
933
|
-
.rounded{
|
|
424
|
+
.rounded {
|
|
934
425
|
border-radius: 0.25rem;
|
|
935
426
|
}
|
|
936
|
-
|
|
937
|
-
.rounded-full{
|
|
427
|
+
.rounded-full {
|
|
938
428
|
border-radius: 9999px;
|
|
939
429
|
}
|
|
940
|
-
|
|
941
|
-
.rounded-lg{
|
|
430
|
+
.rounded-lg {
|
|
942
431
|
border-radius: 0.5rem;
|
|
943
432
|
}
|
|
944
|
-
|
|
945
|
-
.rounded-md{
|
|
433
|
+
.rounded-md {
|
|
946
434
|
border-radius: 0.375rem;
|
|
947
435
|
}
|
|
948
|
-
|
|
949
|
-
.border{
|
|
436
|
+
.border {
|
|
950
437
|
border-width: 1px;
|
|
951
438
|
}
|
|
952
|
-
|
|
953
|
-
.border-b{
|
|
439
|
+
.border-b {
|
|
954
440
|
border-bottom-width: 1px;
|
|
955
441
|
}
|
|
956
|
-
|
|
957
|
-
.border-b-2{
|
|
442
|
+
.border-b-2 {
|
|
958
443
|
border-bottom-width: 2px;
|
|
959
444
|
}
|
|
960
|
-
|
|
961
|
-
.border-l{
|
|
445
|
+
.border-l {
|
|
962
446
|
border-left-width: 1px;
|
|
963
447
|
}
|
|
964
|
-
|
|
965
|
-
.border-l-4{
|
|
448
|
+
.border-l-4 {
|
|
966
449
|
border-left-width: 4px;
|
|
967
450
|
}
|
|
968
|
-
|
|
969
|
-
.border-t{
|
|
451
|
+
.border-t {
|
|
970
452
|
border-top-width: 1px;
|
|
971
453
|
}
|
|
972
|
-
|
|
973
|
-
.border-t-2{
|
|
454
|
+
.border-t-2 {
|
|
974
455
|
border-top-width: 2px;
|
|
975
456
|
}
|
|
976
|
-
|
|
977
|
-
.border-dashed{
|
|
457
|
+
.border-dashed {
|
|
978
458
|
border-style: dashed;
|
|
979
459
|
}
|
|
980
|
-
|
|
981
|
-
.border-blue-100{
|
|
460
|
+
.border-blue-100 {
|
|
982
461
|
--tw-border-opacity: 1;
|
|
983
462
|
border-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
|
|
984
463
|
}
|
|
985
|
-
|
|
986
|
-
.border-blue-300{
|
|
464
|
+
.border-blue-300 {
|
|
987
465
|
--tw-border-opacity: 1;
|
|
988
466
|
border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
|
|
989
467
|
}
|
|
990
|
-
|
|
991
|
-
.border-gray-100{
|
|
468
|
+
.border-gray-100 {
|
|
992
469
|
--tw-border-opacity: 1;
|
|
993
470
|
border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
|
|
994
471
|
}
|
|
995
|
-
|
|
996
|
-
.border-gray-200{
|
|
472
|
+
.border-gray-200 {
|
|
997
473
|
--tw-border-opacity: 1;
|
|
998
474
|
border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
|
|
999
475
|
}
|
|
1000
|
-
|
|
1001
|
-
.border-gray-300{
|
|
476
|
+
.border-gray-300 {
|
|
1002
477
|
--tw-border-opacity: 1;
|
|
1003
478
|
border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
|
|
1004
479
|
}
|
|
1005
|
-
|
|
1006
|
-
.border-b-blue-200{
|
|
480
|
+
.border-b-blue-200 {
|
|
1007
481
|
--tw-border-opacity: 1;
|
|
1008
482
|
border-bottom-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
|
|
1009
483
|
}
|
|
1010
|
-
|
|
1011
|
-
.border-t-blue-200{
|
|
484
|
+
.border-t-blue-200 {
|
|
1012
485
|
--tw-border-opacity: 1;
|
|
1013
486
|
border-top-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
|
|
1014
487
|
}
|
|
1015
|
-
|
|
1016
|
-
.bg-blue-50{
|
|
488
|
+
.bg-blue-50 {
|
|
1017
489
|
--tw-bg-opacity: 1;
|
|
1018
490
|
background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
|
|
1019
491
|
}
|
|
1020
|
-
|
|
1021
|
-
.bg-blue-50\/60{
|
|
492
|
+
.bg-blue-50\/60 {
|
|
1022
493
|
background-color: rgb(239 246 255 / 0.6);
|
|
1023
494
|
}
|
|
1024
|
-
|
|
1025
|
-
.bg-blue-500{
|
|
495
|
+
.bg-blue-500 {
|
|
1026
496
|
--tw-bg-opacity: 1;
|
|
1027
497
|
background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
|
|
1028
498
|
}
|
|
1029
|
-
|
|
1030
|
-
.bg-gray-100{
|
|
499
|
+
.bg-gray-100 {
|
|
1031
500
|
--tw-bg-opacity: 1;
|
|
1032
501
|
background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
|
|
1033
502
|
}
|
|
1034
|
-
|
|
1035
|
-
.bg-gray-200{
|
|
503
|
+
.bg-gray-200 {
|
|
1036
504
|
--tw-bg-opacity: 1;
|
|
1037
505
|
background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
|
|
1038
506
|
}
|
|
1039
|
-
|
|
1040
|
-
.bg-gray-300{
|
|
507
|
+
.bg-gray-300 {
|
|
1041
508
|
--tw-bg-opacity: 1;
|
|
1042
509
|
background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
|
|
1043
510
|
}
|
|
1044
|
-
|
|
1045
|
-
.bg-gray-50{
|
|
511
|
+
.bg-gray-50 {
|
|
1046
512
|
--tw-bg-opacity: 1;
|
|
1047
513
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
1048
514
|
}
|
|
1049
|
-
|
|
1050
|
-
.bg-gray-700{
|
|
1051
|
-
--tw-bg-opacity: 1;
|
|
1052
|
-
background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
|
|
1053
|
-
}
|
|
1054
|
-
|
|
1055
|
-
.bg-white{
|
|
515
|
+
.bg-white {
|
|
1056
516
|
--tw-bg-opacity: 1;
|
|
1057
517
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
1058
518
|
}
|
|
1059
|
-
|
|
1060
|
-
.p-0{
|
|
519
|
+
.p-0 {
|
|
1061
520
|
padding: 0px;
|
|
1062
521
|
}
|
|
1063
|
-
|
|
1064
|
-
.p-1{
|
|
522
|
+
.p-1 {
|
|
1065
523
|
padding: 0.25rem;
|
|
1066
524
|
}
|
|
1067
|
-
|
|
1068
|
-
.p-2{
|
|
525
|
+
.p-2 {
|
|
1069
526
|
padding: 0.5rem;
|
|
1070
527
|
}
|
|
1071
|
-
|
|
1072
|
-
.p-3{
|
|
528
|
+
.p-3 {
|
|
1073
529
|
padding: 0.75rem;
|
|
1074
530
|
}
|
|
1075
|
-
|
|
1076
|
-
.px-1{
|
|
531
|
+
.px-1 {
|
|
1077
532
|
padding-left: 0.25rem;
|
|
1078
533
|
padding-right: 0.25rem;
|
|
1079
534
|
}
|
|
1080
|
-
|
|
1081
|
-
.px-1\.5{
|
|
535
|
+
.px-1\.5 {
|
|
1082
536
|
padding-left: 0.375rem;
|
|
1083
537
|
padding-right: 0.375rem;
|
|
1084
538
|
}
|
|
1085
|
-
|
|
1086
|
-
.px-2{
|
|
539
|
+
.px-2 {
|
|
1087
540
|
padding-left: 0.5rem;
|
|
1088
541
|
padding-right: 0.5rem;
|
|
1089
542
|
}
|
|
1090
|
-
|
|
1091
|
-
.px-2\.5{
|
|
543
|
+
.px-2\.5 {
|
|
1092
544
|
padding-left: 0.625rem;
|
|
1093
545
|
padding-right: 0.625rem;
|
|
1094
546
|
}
|
|
1095
|
-
|
|
1096
|
-
.px-3{
|
|
547
|
+
.px-3 {
|
|
1097
548
|
padding-left: 0.75rem;
|
|
1098
549
|
padding-right: 0.75rem;
|
|
1099
550
|
}
|
|
1100
|
-
|
|
1101
|
-
.py-0\.5{
|
|
551
|
+
.py-0\.5 {
|
|
1102
552
|
padding-top: 0.125rem;
|
|
1103
553
|
padding-bottom: 0.125rem;
|
|
1104
554
|
}
|
|
1105
|
-
|
|
1106
|
-
.py-1{
|
|
555
|
+
.py-1 {
|
|
1107
556
|
padding-top: 0.25rem;
|
|
1108
557
|
padding-bottom: 0.25rem;
|
|
1109
558
|
}
|
|
1110
|
-
|
|
1111
|
-
.py-1\.5{
|
|
559
|
+
.py-1\.5 {
|
|
1112
560
|
padding-top: 0.375rem;
|
|
1113
561
|
padding-bottom: 0.375rem;
|
|
1114
562
|
}
|
|
1115
|
-
|
|
1116
|
-
.py-2{
|
|
563
|
+
.py-2 {
|
|
1117
564
|
padding-top: 0.5rem;
|
|
1118
565
|
padding-bottom: 0.5rem;
|
|
1119
566
|
}
|
|
1120
|
-
|
|
1121
|
-
.py-2\.5{
|
|
567
|
+
.py-2\.5 {
|
|
1122
568
|
padding-top: 0.625rem;
|
|
1123
569
|
padding-bottom: 0.625rem;
|
|
1124
570
|
}
|
|
1125
|
-
|
|
1126
|
-
.py-4{
|
|
571
|
+
.py-4 {
|
|
1127
572
|
padding-top: 1rem;
|
|
1128
573
|
padding-bottom: 1rem;
|
|
1129
574
|
}
|
|
1130
|
-
|
|
1131
|
-
.py-8{
|
|
575
|
+
.py-8 {
|
|
1132
576
|
padding-top: 2rem;
|
|
1133
577
|
padding-bottom: 2rem;
|
|
1134
578
|
}
|
|
1135
|
-
|
|
1136
|
-
.pb-1{
|
|
579
|
+
.pb-1 {
|
|
1137
580
|
padding-bottom: 0.25rem;
|
|
1138
581
|
}
|
|
1139
|
-
|
|
1140
|
-
.pb-2{
|
|
582
|
+
.pb-2 {
|
|
1141
583
|
padding-bottom: 0.5rem;
|
|
1142
584
|
}
|
|
1143
|
-
|
|
1144
|
-
.pb-3{
|
|
585
|
+
.pb-3 {
|
|
1145
586
|
padding-bottom: 0.75rem;
|
|
1146
587
|
}
|
|
1147
|
-
|
|
1148
|
-
.pl-4{
|
|
588
|
+
.pl-4 {
|
|
1149
589
|
padding-left: 1rem;
|
|
1150
590
|
}
|
|
1151
|
-
|
|
1152
|
-
.pl-8{
|
|
591
|
+
.pl-8 {
|
|
1153
592
|
padding-left: 2rem;
|
|
1154
593
|
}
|
|
1155
|
-
|
|
1156
|
-
.pr-24{
|
|
594
|
+
.pr-24 {
|
|
1157
595
|
padding-right: 6rem;
|
|
1158
596
|
}
|
|
1159
|
-
|
|
1160
|
-
.pr-3{
|
|
597
|
+
.pr-3 {
|
|
1161
598
|
padding-right: 0.75rem;
|
|
1162
599
|
}
|
|
1163
|
-
|
|
1164
|
-
.pt-2{
|
|
600
|
+
.pt-2 {
|
|
1165
601
|
padding-top: 0.5rem;
|
|
1166
602
|
}
|
|
1167
|
-
|
|
1168
|
-
.text-left{
|
|
603
|
+
.text-left {
|
|
1169
604
|
text-align: left;
|
|
1170
605
|
}
|
|
1171
|
-
|
|
1172
|
-
.text-center{
|
|
606
|
+
.text-center {
|
|
1173
607
|
text-align: center;
|
|
1174
608
|
}
|
|
1175
|
-
|
|
1176
|
-
.text-justify{
|
|
609
|
+
.text-justify {
|
|
1177
610
|
text-align: justify;
|
|
1178
611
|
}
|
|
1179
|
-
|
|
1180
|
-
.text-2xl{
|
|
612
|
+
.text-2xl {
|
|
1181
613
|
font-size: 1.5rem;
|
|
1182
614
|
line-height: 2rem;
|
|
1183
615
|
}
|
|
1184
|
-
|
|
1185
|
-
.text-3xl{
|
|
616
|
+
.text-3xl {
|
|
1186
617
|
font-size: 1.875rem;
|
|
1187
618
|
line-height: 2.25rem;
|
|
1188
619
|
}
|
|
1189
|
-
|
|
1190
|
-
.text-\[10px\]{
|
|
620
|
+
.text-\[10px\] {
|
|
1191
621
|
font-size: 10px;
|
|
1192
622
|
}
|
|
1193
|
-
|
|
1194
|
-
.text-\[11px\]{
|
|
623
|
+
.text-\[11px\] {
|
|
1195
624
|
font-size: 11px;
|
|
1196
625
|
}
|
|
1197
|
-
|
|
1198
|
-
.text-base{
|
|
626
|
+
.text-base {
|
|
1199
627
|
font-size: 1rem;
|
|
1200
628
|
line-height: 1.5rem;
|
|
1201
629
|
}
|
|
1202
|
-
|
|
1203
|
-
.text-lg{
|
|
630
|
+
.text-lg {
|
|
1204
631
|
font-size: 1.125rem;
|
|
1205
632
|
line-height: 1.75rem;
|
|
1206
633
|
}
|
|
1207
|
-
|
|
1208
|
-
.text-xl{
|
|
634
|
+
.text-xl {
|
|
1209
635
|
font-size: 1.25rem;
|
|
1210
636
|
line-height: 1.75rem;
|
|
1211
637
|
}
|
|
1212
|
-
|
|
1213
|
-
.text-xs{
|
|
638
|
+
.text-xs {
|
|
1214
639
|
font-size: 0.75rem;
|
|
1215
640
|
line-height: 1rem;
|
|
1216
641
|
}
|
|
1217
|
-
|
|
1218
|
-
.font-bold{
|
|
642
|
+
.font-bold {
|
|
1219
643
|
font-weight: 700;
|
|
1220
644
|
}
|
|
1221
|
-
|
|
1222
|
-
.font-medium{
|
|
645
|
+
.font-medium {
|
|
1223
646
|
font-weight: 500;
|
|
1224
647
|
}
|
|
1225
|
-
|
|
1226
|
-
.font-semibold{
|
|
648
|
+
.font-semibold {
|
|
1227
649
|
font-weight: 600;
|
|
1228
650
|
}
|
|
1229
|
-
|
|
1230
|
-
.uppercase{
|
|
651
|
+
.uppercase {
|
|
1231
652
|
text-transform: uppercase;
|
|
1232
653
|
}
|
|
1233
|
-
|
|
1234
|
-
.italic{
|
|
654
|
+
.italic {
|
|
1235
655
|
font-style: italic;
|
|
1236
656
|
}
|
|
1237
|
-
|
|
1238
|
-
.tracking-wider{
|
|
657
|
+
.tracking-wider {
|
|
1239
658
|
letter-spacing: 0.05em;
|
|
1240
659
|
}
|
|
1241
|
-
|
|
1242
|
-
.text-blue-600{
|
|
660
|
+
.text-blue-600 {
|
|
1243
661
|
--tw-text-opacity: 1;
|
|
1244
662
|
color: rgb(37 99 235 / var(--tw-text-opacity, 1));
|
|
1245
663
|
}
|
|
1246
|
-
|
|
1247
|
-
.text-blue-700{
|
|
664
|
+
.text-blue-700 {
|
|
1248
665
|
--tw-text-opacity: 1;
|
|
1249
666
|
color: rgb(29 78 216 / var(--tw-text-opacity, 1));
|
|
1250
667
|
}
|
|
1251
|
-
|
|
1252
|
-
.text-gray-300{
|
|
668
|
+
.text-gray-300 {
|
|
1253
669
|
--tw-text-opacity: 1;
|
|
1254
670
|
color: rgb(209 213 219 / var(--tw-text-opacity, 1));
|
|
1255
671
|
}
|
|
1256
|
-
|
|
1257
|
-
.text-gray-400{
|
|
672
|
+
.text-gray-400 {
|
|
1258
673
|
--tw-text-opacity: 1;
|
|
1259
674
|
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
1260
675
|
}
|
|
1261
|
-
|
|
1262
|
-
.text-gray-500{
|
|
676
|
+
.text-gray-500 {
|
|
1263
677
|
--tw-text-opacity: 1;
|
|
1264
678
|
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
1265
679
|
}
|
|
1266
|
-
|
|
1267
|
-
.text-gray-600{
|
|
680
|
+
.text-gray-600 {
|
|
1268
681
|
--tw-text-opacity: 1;
|
|
1269
682
|
color: rgb(75 85 99 / var(--tw-text-opacity, 1));
|
|
1270
683
|
}
|
|
1271
|
-
|
|
1272
|
-
.text-gray-700{
|
|
684
|
+
.text-gray-700 {
|
|
1273
685
|
--tw-text-opacity: 1;
|
|
1274
686
|
color: rgb(55 65 81 / var(--tw-text-opacity, 1));
|
|
1275
687
|
}
|
|
1276
|
-
|
|
1277
|
-
.text-gray-900{
|
|
688
|
+
.text-gray-900 {
|
|
1278
689
|
--tw-text-opacity: 1;
|
|
1279
690
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
1280
691
|
}
|
|
1281
|
-
|
|
1282
|
-
.underline{
|
|
692
|
+
.underline {
|
|
1283
693
|
text-decoration-line: underline;
|
|
1284
694
|
}
|
|
1285
|
-
|
|
1286
|
-
.line-through{
|
|
695
|
+
.line-through {
|
|
1287
696
|
text-decoration-line: line-through;
|
|
1288
697
|
}
|
|
1289
|
-
|
|
1290
|
-
.placeholder-gray-400::-moz-placeholder{
|
|
698
|
+
.placeholder-gray-400::-moz-placeholder {
|
|
1291
699
|
--tw-placeholder-opacity: 1;
|
|
1292
700
|
color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
|
|
1293
701
|
}
|
|
1294
|
-
|
|
1295
|
-
.placeholder-gray-400::placeholder{
|
|
702
|
+
.placeholder-gray-400::placeholder {
|
|
1296
703
|
--tw-placeholder-opacity: 1;
|
|
1297
704
|
color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
|
|
1298
705
|
}
|
|
1299
|
-
|
|
1300
|
-
.opacity-0{
|
|
706
|
+
.opacity-0 {
|
|
1301
707
|
opacity: 0;
|
|
1302
708
|
}
|
|
1303
|
-
|
|
1304
|
-
.shadow-lg{
|
|
709
|
+
.shadow-lg {
|
|
1305
710
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
1306
711
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
1307
712
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1308
713
|
}
|
|
1309
|
-
|
|
1310
|
-
.shadow-sm{
|
|
714
|
+
.shadow-sm {
|
|
1311
715
|
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
1312
716
|
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
1313
717
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1314
718
|
}
|
|
1315
|
-
|
|
1316
|
-
.shadow-xl{
|
|
719
|
+
.shadow-xl {
|
|
1317
720
|
--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
1318
721
|
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
|
|
1319
722
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1320
723
|
}
|
|
1321
|
-
|
|
1322
|
-
.outline-none{
|
|
724
|
+
.outline-none {
|
|
1323
725
|
outline: 2px solid transparent;
|
|
1324
726
|
outline-offset: 2px;
|
|
1325
727
|
}
|
|
1326
|
-
|
|
1327
|
-
.blur{
|
|
728
|
+
.blur {
|
|
1328
729
|
--tw-blur: blur(8px);
|
|
1329
730
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1330
731
|
}
|
|
1331
|
-
|
|
1332
|
-
.\!filter{
|
|
732
|
+
.\!filter {
|
|
1333
733
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
|
|
1334
734
|
}
|
|
1335
|
-
|
|
1336
|
-
.filter{
|
|
735
|
+
.filter {
|
|
1337
736
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1338
737
|
}
|
|
1339
|
-
|
|
1340
|
-
.transition-colors{
|
|
738
|
+
.transition-colors {
|
|
1341
739
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
1342
740
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1343
741
|
transition-duration: 150ms;
|
|
1344
742
|
}
|
|
1345
|
-
|
|
1346
|
-
.transition-transform{
|
|
743
|
+
.transition-transform {
|
|
1347
744
|
transition-property: transform;
|
|
1348
745
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1349
746
|
transition-duration: 150ms;
|
|
1350
747
|
}
|
|
1351
|
-
|
|
1352
|
-
.duration-200{
|
|
748
|
+
.duration-200 {
|
|
1353
749
|
transition-duration: 200ms;
|
|
1354
750
|
}
|
|
1355
751
|
|
|
@@ -1388,76 +784,76 @@ video {
|
|
|
1388
784
|
color: inherit !important;
|
|
1389
785
|
}
|
|
1390
786
|
|
|
1391
|
-
.hover\:bg-blue-50:hover{
|
|
787
|
+
.hover\:bg-blue-50:hover {
|
|
1392
788
|
--tw-bg-opacity: 1;
|
|
1393
789
|
background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
|
|
1394
790
|
}
|
|
1395
791
|
|
|
1396
|
-
.hover\:bg-gray-100:hover{
|
|
792
|
+
.hover\:bg-gray-100:hover {
|
|
1397
793
|
--tw-bg-opacity: 1;
|
|
1398
794
|
background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
|
|
1399
795
|
}
|
|
1400
796
|
|
|
1401
|
-
.hover\:bg-gray-50:hover{
|
|
797
|
+
.hover\:bg-gray-50:hover {
|
|
1402
798
|
--tw-bg-opacity: 1;
|
|
1403
799
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
|
1404
800
|
}
|
|
1405
801
|
|
|
1406
|
-
.hover\:text-gray-600:hover{
|
|
802
|
+
.hover\:text-gray-600:hover {
|
|
1407
803
|
--tw-text-opacity: 1;
|
|
1408
804
|
color: rgb(75 85 99 / var(--tw-text-opacity, 1));
|
|
1409
805
|
}
|
|
1410
806
|
|
|
1411
|
-
.hover\:text-gray-900:hover{
|
|
807
|
+
.hover\:text-gray-900:hover {
|
|
1412
808
|
--tw-text-opacity: 1;
|
|
1413
809
|
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
|
1414
810
|
}
|
|
1415
811
|
|
|
1416
|
-
.focus\:border-blue-400:focus{
|
|
812
|
+
.focus\:border-blue-400:focus {
|
|
1417
813
|
--tw-border-opacity: 1;
|
|
1418
814
|
border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
|
|
1419
815
|
}
|
|
1420
816
|
|
|
1421
|
-
.focus\:bg-white:focus{
|
|
817
|
+
.focus\:bg-white:focus {
|
|
1422
818
|
--tw-bg-opacity: 1;
|
|
1423
819
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
1424
820
|
}
|
|
1425
821
|
|
|
1426
|
-
.focus\:outline-none:focus{
|
|
822
|
+
.focus\:outline-none:focus {
|
|
1427
823
|
outline: 2px solid transparent;
|
|
1428
824
|
outline-offset: 2px;
|
|
1429
825
|
}
|
|
1430
826
|
|
|
1431
|
-
.focus\:ring-1:focus{
|
|
827
|
+
.focus\:ring-1:focus {
|
|
1432
828
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1433
829
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1434
830
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1435
831
|
}
|
|
1436
832
|
|
|
1437
|
-
.focus\:ring-blue-400:focus{
|
|
833
|
+
.focus\:ring-blue-400:focus {
|
|
1438
834
|
--tw-ring-opacity: 1;
|
|
1439
835
|
--tw-ring-color: rgb(96 165 250 / var(--tw-ring-opacity, 1));
|
|
1440
836
|
}
|
|
1441
837
|
|
|
1442
|
-
.disabled\:cursor-not-allowed:disabled{
|
|
838
|
+
.disabled\:cursor-not-allowed:disabled {
|
|
1443
839
|
cursor: not-allowed;
|
|
1444
840
|
}
|
|
1445
841
|
|
|
1446
|
-
.disabled\:text-gray-300:disabled{
|
|
842
|
+
.disabled\:text-gray-300:disabled {
|
|
1447
843
|
--tw-text-opacity: 1;
|
|
1448
844
|
color: rgb(209 213 219 / var(--tw-text-opacity, 1));
|
|
1449
845
|
}
|
|
1450
846
|
|
|
1451
|
-
.disabled\:opacity-50:disabled{
|
|
847
|
+
.disabled\:opacity-50:disabled {
|
|
1452
848
|
opacity: 0.5;
|
|
1453
849
|
}
|
|
1454
850
|
|
|
1455
|
-
.group:hover .group-hover\:border-blue-400{
|
|
851
|
+
.group:hover .group-hover\:border-blue-400 {
|
|
1456
852
|
--tw-border-opacity: 1;
|
|
1457
853
|
border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
|
|
1458
854
|
}
|
|
1459
855
|
|
|
1460
|
-
.group:hover .group-hover\:bg-blue-50{
|
|
856
|
+
.group:hover .group-hover\:bg-blue-50 {
|
|
1461
857
|
--tw-bg-opacity: 1;
|
|
1462
858
|
background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
|
|
1463
859
|
}
|