@esic-lab/data-core-ui 0.0.15 → 0.0.17
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/dist/{STO-logo-KFQUNTJ3.svg → STO-logo-ADYYAPS3.svg} +92 -92
- package/dist/assets/STO-logo.svg +92 -92
- package/dist/index.css +690 -9
- package/dist/index.d.mts +766 -12
- package/dist/index.d.ts +766 -12
- package/dist/index.js +2052 -101
- package/dist/index.mjs +2044 -95
- package/package.json +12 -3
package/dist/index.css
CHANGED
|
@@ -27,23 +27,47 @@
|
|
|
27
27
|
--color-red-400: #f16965;
|
|
28
28
|
--color-red-500: #ee443f;
|
|
29
29
|
--color-red-600: #d93e39;
|
|
30
|
+
--color-red-700: #a9302d;
|
|
31
|
+
--color-yellow-400: #ffbb33;
|
|
32
|
+
--color-green-400: #69c57d;
|
|
30
33
|
--color-green-500: #43b75d;
|
|
34
|
+
--color-green-600: #3da755;
|
|
31
35
|
--color-blue-500: #0095ff;
|
|
36
|
+
--color-blue-800: #00528c;
|
|
37
|
+
--color-indigo-100: oklch(93% 0.034 272.788);
|
|
38
|
+
--color-indigo-800: oklch(39.8% 0.195 277.366);
|
|
39
|
+
--color-gray-50: #f9fafb;
|
|
40
|
+
--color-gray-100: #f3f4f6;
|
|
32
41
|
--color-gray-200: #e5e7ea;
|
|
33
42
|
--color-gray-300: #d2d5db;
|
|
34
43
|
--color-gray-400: #9ea2ae;
|
|
44
|
+
--color-gray-500: #6d717f;
|
|
35
45
|
--color-gray-600: #4d5461;
|
|
46
|
+
--color-gray-700: #394050;
|
|
36
47
|
--color-black: #000;
|
|
37
48
|
--color-white: #fff;
|
|
38
49
|
--spacing: 0.25rem;
|
|
50
|
+
--text-xs: 0.75rem;
|
|
51
|
+
--text-xs--line-height: calc(1 / 0.75);
|
|
52
|
+
--text-sm: 0.875rem;
|
|
53
|
+
--text-sm--line-height: calc(1.25 / 0.875);
|
|
54
|
+
--text-lg: 1.125rem;
|
|
55
|
+
--text-lg--line-height: calc(1.75 / 1.125);
|
|
56
|
+
--font-weight-medium: 500;
|
|
39
57
|
--font-weight-semibold: 600;
|
|
58
|
+
--radius-sm: 0.25rem;
|
|
40
59
|
--radius-md: 0.375rem;
|
|
60
|
+
--radius-lg: 0.5rem;
|
|
61
|
+
--radius-2xl: 1rem;
|
|
41
62
|
--animate-spin: spin 1s linear infinite;
|
|
42
63
|
--default-transition-duration: 150ms;
|
|
43
64
|
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
44
65
|
--default-font-family: var(--font-sans);
|
|
45
66
|
--default-mono-font-family: var(--font-mono);
|
|
46
67
|
--color-primary-500: #4e61f6;
|
|
68
|
+
--color-primary-400: #7181f8;
|
|
69
|
+
--color-primary-200: #aeb6fb;
|
|
70
|
+
--color-primary-50: #edeffe;
|
|
47
71
|
}
|
|
48
72
|
}
|
|
49
73
|
@layer base {
|
|
@@ -236,24 +260,96 @@
|
|
|
236
260
|
}
|
|
237
261
|
}
|
|
238
262
|
@layer utilities {
|
|
263
|
+
.pointer-events-none {
|
|
264
|
+
pointer-events: none;
|
|
265
|
+
}
|
|
266
|
+
.invisible {
|
|
267
|
+
visibility: hidden;
|
|
268
|
+
}
|
|
269
|
+
.absolute {
|
|
270
|
+
position: absolute;
|
|
271
|
+
}
|
|
272
|
+
.fixed {
|
|
273
|
+
position: fixed;
|
|
274
|
+
}
|
|
239
275
|
.relative {
|
|
240
276
|
position: relative;
|
|
241
277
|
}
|
|
242
278
|
.static {
|
|
243
279
|
position: static;
|
|
244
280
|
}
|
|
245
|
-
.
|
|
246
|
-
|
|
281
|
+
.inset-0 {
|
|
282
|
+
inset: calc(var(--spacing) * 0);
|
|
283
|
+
}
|
|
284
|
+
.top-0 {
|
|
285
|
+
top: calc(var(--spacing) * 0);
|
|
286
|
+
}
|
|
287
|
+
.top-1\/2 {
|
|
288
|
+
top: calc(1/2 * 100%);
|
|
289
|
+
}
|
|
290
|
+
.top-3 {
|
|
291
|
+
top: calc(var(--spacing) * 3);
|
|
292
|
+
}
|
|
293
|
+
.top-12 {
|
|
294
|
+
top: calc(var(--spacing) * 12);
|
|
295
|
+
}
|
|
296
|
+
.right-0 {
|
|
297
|
+
right: calc(var(--spacing) * 0);
|
|
298
|
+
}
|
|
299
|
+
.right-3 {
|
|
300
|
+
right: calc(var(--spacing) * 3);
|
|
301
|
+
}
|
|
302
|
+
.left-full {
|
|
303
|
+
left: 100%;
|
|
304
|
+
}
|
|
305
|
+
.z-10 {
|
|
306
|
+
z-index: 10;
|
|
307
|
+
}
|
|
308
|
+
.z-50 {
|
|
309
|
+
z-index: 50;
|
|
310
|
+
}
|
|
311
|
+
.mx-2 {
|
|
312
|
+
margin-inline: calc(var(--spacing) * 2);
|
|
313
|
+
}
|
|
314
|
+
.my-1 {
|
|
315
|
+
margin-block: calc(var(--spacing) * 1);
|
|
316
|
+
}
|
|
317
|
+
.my-2 {
|
|
318
|
+
margin-block: calc(var(--spacing) * 2);
|
|
319
|
+
}
|
|
320
|
+
.mt-2 {
|
|
321
|
+
margin-top: calc(var(--spacing) * 2);
|
|
322
|
+
}
|
|
323
|
+
.mt-4 {
|
|
324
|
+
margin-top: calc(var(--spacing) * 4);
|
|
325
|
+
}
|
|
326
|
+
.mt-\[8px\] {
|
|
327
|
+
margin-top: 8px;
|
|
247
328
|
}
|
|
248
329
|
.mt-\[10px\] {
|
|
249
330
|
margin-top: 10px;
|
|
250
331
|
}
|
|
332
|
+
.mr-2 {
|
|
333
|
+
margin-right: calc(var(--spacing) * 2);
|
|
334
|
+
}
|
|
251
335
|
.mr-\[8px\] {
|
|
252
336
|
margin-right: 8px;
|
|
253
337
|
}
|
|
338
|
+
.mb-2 {
|
|
339
|
+
margin-bottom: calc(var(--spacing) * 2);
|
|
340
|
+
}
|
|
341
|
+
.mb-4 {
|
|
342
|
+
margin-bottom: calc(var(--spacing) * 4);
|
|
343
|
+
}
|
|
254
344
|
.mb-\[8px\] {
|
|
255
345
|
margin-bottom: 8px;
|
|
256
346
|
}
|
|
347
|
+
.ml-2 {
|
|
348
|
+
margin-left: calc(var(--spacing) * 2);
|
|
349
|
+
}
|
|
350
|
+
.ml-3 {
|
|
351
|
+
margin-left: calc(var(--spacing) * 3);
|
|
352
|
+
}
|
|
257
353
|
.ml-auto {
|
|
258
354
|
margin-left: auto;
|
|
259
355
|
}
|
|
@@ -275,18 +371,33 @@
|
|
|
275
371
|
.inline-block {
|
|
276
372
|
display: inline-block;
|
|
277
373
|
}
|
|
374
|
+
.inline-flex {
|
|
375
|
+
display: inline-flex;
|
|
376
|
+
}
|
|
377
|
+
.h-4 {
|
|
378
|
+
height: calc(var(--spacing) * 4);
|
|
379
|
+
}
|
|
278
380
|
.h-5 {
|
|
279
381
|
height: calc(var(--spacing) * 5);
|
|
280
382
|
}
|
|
383
|
+
.h-6 {
|
|
384
|
+
height: calc(var(--spacing) * 6);
|
|
385
|
+
}
|
|
281
386
|
.h-7 {
|
|
282
387
|
height: calc(var(--spacing) * 7);
|
|
283
388
|
}
|
|
284
389
|
.h-\[10px\] {
|
|
285
390
|
height: 10px;
|
|
286
391
|
}
|
|
392
|
+
.h-\[15px\] {
|
|
393
|
+
height: 15px;
|
|
394
|
+
}
|
|
287
395
|
.h-\[16px\] {
|
|
288
396
|
height: 16px;
|
|
289
397
|
}
|
|
398
|
+
.h-\[20px\] {
|
|
399
|
+
height: 20px;
|
|
400
|
+
}
|
|
290
401
|
.h-\[24px\] {
|
|
291
402
|
height: 24px;
|
|
292
403
|
}
|
|
@@ -296,6 +407,12 @@
|
|
|
296
407
|
.h-\[30px\] {
|
|
297
408
|
height: 30px;
|
|
298
409
|
}
|
|
410
|
+
.h-\[32px\] {
|
|
411
|
+
height: 32px;
|
|
412
|
+
}
|
|
413
|
+
.h-\[34px\] {
|
|
414
|
+
height: 34px;
|
|
415
|
+
}
|
|
299
416
|
.h-\[35px\] {
|
|
300
417
|
height: 35px;
|
|
301
418
|
}
|
|
@@ -308,59 +425,147 @@
|
|
|
308
425
|
.h-\[47px\] {
|
|
309
426
|
height: 47px;
|
|
310
427
|
}
|
|
428
|
+
.h-\[500px\] {
|
|
429
|
+
height: 500px;
|
|
430
|
+
}
|
|
311
431
|
.h-\[700px\] {
|
|
312
432
|
height: 700px;
|
|
313
433
|
}
|
|
434
|
+
.h-auto {
|
|
435
|
+
height: auto;
|
|
436
|
+
}
|
|
314
437
|
.h-full {
|
|
315
438
|
height: 100%;
|
|
316
439
|
}
|
|
440
|
+
.h-screen {
|
|
441
|
+
height: 100vh;
|
|
442
|
+
}
|
|
443
|
+
.max-h-\[250px\] {
|
|
444
|
+
max-height: 250px;
|
|
445
|
+
}
|
|
446
|
+
.max-h-\[300px\] {
|
|
447
|
+
max-height: 300px;
|
|
448
|
+
}
|
|
449
|
+
.min-h-\[120px\] {
|
|
450
|
+
min-height: 120px;
|
|
451
|
+
}
|
|
452
|
+
.w-0 {
|
|
453
|
+
width: calc(var(--spacing) * 0);
|
|
454
|
+
}
|
|
455
|
+
.w-1\/2 {
|
|
456
|
+
width: calc(1/2 * 100%);
|
|
457
|
+
}
|
|
458
|
+
.w-1\/4 {
|
|
459
|
+
width: calc(1/4 * 100%);
|
|
460
|
+
}
|
|
461
|
+
.w-4 {
|
|
462
|
+
width: calc(var(--spacing) * 4);
|
|
463
|
+
}
|
|
317
464
|
.w-5 {
|
|
318
465
|
width: calc(var(--spacing) * 5);
|
|
319
466
|
}
|
|
467
|
+
.w-6 {
|
|
468
|
+
width: calc(var(--spacing) * 6);
|
|
469
|
+
}
|
|
320
470
|
.w-13 {
|
|
321
471
|
width: calc(var(--spacing) * 13);
|
|
322
472
|
}
|
|
473
|
+
.w-16 {
|
|
474
|
+
width: calc(var(--spacing) * 16);
|
|
475
|
+
}
|
|
476
|
+
.w-52 {
|
|
477
|
+
width: calc(var(--spacing) * 52);
|
|
478
|
+
}
|
|
479
|
+
.w-64 {
|
|
480
|
+
width: calc(var(--spacing) * 64);
|
|
481
|
+
}
|
|
323
482
|
.w-\[10px\] {
|
|
324
483
|
width: 10px;
|
|
325
484
|
}
|
|
485
|
+
.w-\[15px\] {
|
|
486
|
+
width: 15px;
|
|
487
|
+
}
|
|
326
488
|
.w-\[16px\] {
|
|
327
489
|
width: 16px;
|
|
328
490
|
}
|
|
491
|
+
.w-\[20px\] {
|
|
492
|
+
width: 20px;
|
|
493
|
+
}
|
|
329
494
|
.w-\[24px\] {
|
|
330
495
|
width: 24px;
|
|
331
496
|
}
|
|
332
497
|
.w-\[30px\] {
|
|
333
498
|
width: 30px;
|
|
334
499
|
}
|
|
500
|
+
.w-\[32px\] {
|
|
501
|
+
width: 32px;
|
|
502
|
+
}
|
|
335
503
|
.w-\[40px\] {
|
|
336
504
|
width: 40px;
|
|
337
505
|
}
|
|
506
|
+
.w-\[75\%\] {
|
|
507
|
+
width: 75%;
|
|
508
|
+
}
|
|
338
509
|
.w-\[80px\] {
|
|
339
510
|
width: 80px;
|
|
340
511
|
}
|
|
341
512
|
.w-\[100px\] {
|
|
342
513
|
width: 100px;
|
|
343
514
|
}
|
|
515
|
+
.w-\[200px\] {
|
|
516
|
+
width: 200px;
|
|
517
|
+
}
|
|
344
518
|
.w-\[202px\] {
|
|
345
519
|
width: 202px;
|
|
346
520
|
}
|
|
347
521
|
.w-\[242px\] {
|
|
348
522
|
width: 242px;
|
|
349
523
|
}
|
|
350
|
-
.w-\[
|
|
351
|
-
width:
|
|
524
|
+
.w-\[250px\] {
|
|
525
|
+
width: 250px;
|
|
526
|
+
}
|
|
527
|
+
.w-\[300px\] {
|
|
528
|
+
width: 300px;
|
|
529
|
+
}
|
|
530
|
+
.w-\[500px\] {
|
|
531
|
+
width: 500px;
|
|
532
|
+
}
|
|
533
|
+
.w-\[1000px\] {
|
|
534
|
+
width: 1000px;
|
|
352
535
|
}
|
|
353
536
|
.w-full {
|
|
354
537
|
width: 100%;
|
|
355
538
|
}
|
|
539
|
+
.min-w-\[400px\] {
|
|
540
|
+
min-width: 400px;
|
|
541
|
+
}
|
|
542
|
+
.flex-1 {
|
|
543
|
+
flex: 1;
|
|
544
|
+
}
|
|
545
|
+
.-translate-x-2 {
|
|
546
|
+
--tw-translate-x: calc(var(--spacing) * -2);
|
|
547
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
548
|
+
}
|
|
356
549
|
.translate-x-0 {
|
|
357
550
|
--tw-translate-x: calc(var(--spacing) * 0);
|
|
358
551
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
359
552
|
}
|
|
553
|
+
.translate-x-2 {
|
|
554
|
+
--tw-translate-x: calc(var(--spacing) * 2);
|
|
555
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
556
|
+
}
|
|
360
557
|
.translate-x-6 {
|
|
361
558
|
--tw-translate-x: calc(var(--spacing) * 6);
|
|
362
559
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
363
560
|
}
|
|
561
|
+
.-translate-y-1\/2 {
|
|
562
|
+
--tw-translate-y: calc(calc(1/2 * 100%) * -1);
|
|
563
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
564
|
+
}
|
|
565
|
+
.-translate-y-2 {
|
|
566
|
+
--tw-translate-y: calc(var(--spacing) * -2);
|
|
567
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
568
|
+
}
|
|
364
569
|
.scale-0 {
|
|
365
570
|
--tw-scale-x: 0%;
|
|
366
571
|
--tw-scale-y: 0%;
|
|
@@ -379,44 +584,88 @@
|
|
|
379
584
|
.animate-spin {
|
|
380
585
|
animation: var(--animate-spin);
|
|
381
586
|
}
|
|
587
|
+
.cursor-not-allowed {
|
|
588
|
+
cursor: not-allowed;
|
|
589
|
+
}
|
|
382
590
|
.cursor-pointer {
|
|
383
591
|
cursor: pointer;
|
|
384
592
|
}
|
|
593
|
+
.resize {
|
|
594
|
+
resize: both;
|
|
595
|
+
}
|
|
385
596
|
.\[grid-template-columns\:repeat\(var\(--cols\)\,minmax\(0\,1fr\)\)\] {
|
|
386
597
|
grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
|
|
387
598
|
}
|
|
599
|
+
.grid-cols-3 {
|
|
600
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
601
|
+
}
|
|
388
602
|
.flex-col {
|
|
389
603
|
flex-direction: column;
|
|
390
604
|
}
|
|
391
605
|
.items-center {
|
|
392
606
|
align-items: center;
|
|
393
607
|
}
|
|
608
|
+
.justify-between {
|
|
609
|
+
justify-content: space-between;
|
|
610
|
+
}
|
|
394
611
|
.justify-center {
|
|
395
612
|
justify-content: center;
|
|
396
613
|
}
|
|
397
614
|
.gap-2 {
|
|
398
615
|
gap: calc(var(--spacing) * 2);
|
|
399
616
|
}
|
|
617
|
+
.gap-3 {
|
|
618
|
+
gap: calc(var(--spacing) * 3);
|
|
619
|
+
}
|
|
400
620
|
.gap-4 {
|
|
401
621
|
gap: calc(var(--spacing) * 4);
|
|
402
622
|
}
|
|
623
|
+
.gap-\[8px\] {
|
|
624
|
+
gap: 8px;
|
|
625
|
+
}
|
|
403
626
|
.gap-\[10px\] {
|
|
404
627
|
gap: 10px;
|
|
405
628
|
}
|
|
406
629
|
.gap-\[20px\] {
|
|
407
630
|
gap: 20px;
|
|
408
631
|
}
|
|
632
|
+
.space-y-1 {
|
|
633
|
+
:where(& > :not(:last-child)) {
|
|
634
|
+
--tw-space-y-reverse: 0;
|
|
635
|
+
margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
|
|
636
|
+
margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
.-space-x-2 {
|
|
640
|
+
:where(& > :not(:last-child)) {
|
|
641
|
+
--tw-space-x-reverse: 0;
|
|
642
|
+
margin-inline-start: calc(calc(var(--spacing) * -2) * var(--tw-space-x-reverse));
|
|
643
|
+
margin-inline-end: calc(calc(var(--spacing) * -2) * calc(1 - var(--tw-space-x-reverse)));
|
|
644
|
+
}
|
|
645
|
+
}
|
|
409
646
|
.truncate {
|
|
410
647
|
overflow: hidden;
|
|
411
648
|
text-overflow: ellipsis;
|
|
412
649
|
white-space: nowrap;
|
|
413
650
|
}
|
|
651
|
+
.overflow-hidden {
|
|
652
|
+
overflow: hidden;
|
|
653
|
+
}
|
|
654
|
+
.overflow-y-auto {
|
|
655
|
+
overflow-y: auto;
|
|
656
|
+
}
|
|
414
657
|
.rounded {
|
|
415
658
|
border-radius: 0.25rem;
|
|
416
659
|
}
|
|
660
|
+
.rounded-2xl {
|
|
661
|
+
border-radius: var(--radius-2xl);
|
|
662
|
+
}
|
|
417
663
|
.rounded-\[2px\] {
|
|
418
664
|
border-radius: 2px;
|
|
419
665
|
}
|
|
666
|
+
.rounded-\[4px\] {
|
|
667
|
+
border-radius: 4px;
|
|
668
|
+
}
|
|
420
669
|
.rounded-\[6px\] {
|
|
421
670
|
border-radius: 6px;
|
|
422
671
|
}
|
|
@@ -426,13 +675,27 @@
|
|
|
426
675
|
.rounded-full {
|
|
427
676
|
border-radius: calc(infinity * 1px);
|
|
428
677
|
}
|
|
678
|
+
.rounded-lg {
|
|
679
|
+
border-radius: var(--radius-lg);
|
|
680
|
+
}
|
|
429
681
|
.rounded-md {
|
|
430
682
|
border-radius: var(--radius-md);
|
|
431
683
|
}
|
|
684
|
+
.rounded-sm {
|
|
685
|
+
border-radius: var(--radius-sm);
|
|
686
|
+
}
|
|
432
687
|
.border {
|
|
433
688
|
border-style: var(--tw-border-style);
|
|
434
689
|
border-width: 1px;
|
|
435
690
|
}
|
|
691
|
+
.border-1 {
|
|
692
|
+
border-style: var(--tw-border-style);
|
|
693
|
+
border-width: 1px;
|
|
694
|
+
}
|
|
695
|
+
.border-2 {
|
|
696
|
+
border-style: var(--tw-border-style);
|
|
697
|
+
border-width: 2px;
|
|
698
|
+
}
|
|
436
699
|
.border-4 {
|
|
437
700
|
border-style: var(--tw-border-style);
|
|
438
701
|
border-width: 4px;
|
|
@@ -441,6 +704,10 @@
|
|
|
441
704
|
border-style: var(--tw-border-style);
|
|
442
705
|
border-width: 1px;
|
|
443
706
|
}
|
|
707
|
+
.border-r {
|
|
708
|
+
border-right-style: var(--tw-border-style);
|
|
709
|
+
border-right-width: 1px;
|
|
710
|
+
}
|
|
444
711
|
.border-b {
|
|
445
712
|
border-bottom-style: var(--tw-border-style);
|
|
446
713
|
border-bottom-width: 1px;
|
|
@@ -449,9 +716,9 @@
|
|
|
449
716
|
border-left-style: var(--tw-border-style);
|
|
450
717
|
border-left-width: 10px;
|
|
451
718
|
}
|
|
452
|
-
.border-
|
|
453
|
-
--tw-border-style:
|
|
454
|
-
border-style:
|
|
719
|
+
.border-dashed {
|
|
720
|
+
--tw-border-style: dashed;
|
|
721
|
+
border-style: dashed;
|
|
455
722
|
}
|
|
456
723
|
.border-black {
|
|
457
724
|
border-color: var(--color-black);
|
|
@@ -459,14 +726,26 @@
|
|
|
459
726
|
.border-gray-200 {
|
|
460
727
|
border-color: var(--color-gray-200);
|
|
461
728
|
}
|
|
729
|
+
.border-gray-300 {
|
|
730
|
+
border-color: var(--color-gray-300);
|
|
731
|
+
}
|
|
732
|
+
.border-gray-400 {
|
|
733
|
+
border-color: var(--color-gray-400);
|
|
734
|
+
}
|
|
462
735
|
.border-green-500 {
|
|
463
736
|
border-color: var(--color-green-500);
|
|
464
737
|
}
|
|
738
|
+
.border-primary-500 {
|
|
739
|
+
border-color: var(--color-primary-500);
|
|
740
|
+
}
|
|
741
|
+
.border-red-500 {
|
|
742
|
+
border-color: var(--color-red-500);
|
|
743
|
+
}
|
|
465
744
|
.border-red-600 {
|
|
466
745
|
border-color: var(--color-red-600);
|
|
467
746
|
}
|
|
468
|
-
.border-
|
|
469
|
-
border-
|
|
747
|
+
.border-white {
|
|
748
|
+
border-color: var(--color-white);
|
|
470
749
|
}
|
|
471
750
|
.bg-\[\#E9E9E9\] {
|
|
472
751
|
background-color: #E9E9E9;
|
|
@@ -474,15 +753,33 @@
|
|
|
474
753
|
.bg-black {
|
|
475
754
|
background-color: var(--color-black);
|
|
476
755
|
}
|
|
756
|
+
.bg-black\/50 {
|
|
757
|
+
background-color: color-mix(in srgb, #000 50%, transparent);
|
|
758
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
759
|
+
background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
|
|
760
|
+
}
|
|
761
|
+
}
|
|
477
762
|
.bg-blue-500 {
|
|
478
763
|
background-color: var(--color-blue-500);
|
|
479
764
|
}
|
|
765
|
+
.bg-gray-50 {
|
|
766
|
+
background-color: var(--color-gray-50);
|
|
767
|
+
}
|
|
768
|
+
.bg-gray-100 {
|
|
769
|
+
background-color: var(--color-gray-100);
|
|
770
|
+
}
|
|
480
771
|
.bg-gray-300 {
|
|
481
772
|
background-color: var(--color-gray-300);
|
|
482
773
|
}
|
|
483
774
|
.bg-gray-400 {
|
|
484
775
|
background-color: var(--color-gray-400);
|
|
485
776
|
}
|
|
777
|
+
.bg-indigo-100 {
|
|
778
|
+
background-color: var(--color-indigo-100);
|
|
779
|
+
}
|
|
780
|
+
.bg-primary-50 {
|
|
781
|
+
background-color: var(--color-primary-50);
|
|
782
|
+
}
|
|
486
783
|
.bg-primary-500 {
|
|
487
784
|
background-color: var(--color-primary-500);
|
|
488
785
|
}
|
|
@@ -498,46 +795,155 @@
|
|
|
498
795
|
.p-1 {
|
|
499
796
|
padding: calc(var(--spacing) * 1);
|
|
500
797
|
}
|
|
798
|
+
.p-1\.5 {
|
|
799
|
+
padding: calc(var(--spacing) * 1.5);
|
|
800
|
+
}
|
|
801
|
+
.p-2 {
|
|
802
|
+
padding: calc(var(--spacing) * 2);
|
|
803
|
+
}
|
|
804
|
+
.p-4 {
|
|
805
|
+
padding: calc(var(--spacing) * 4);
|
|
806
|
+
}
|
|
807
|
+
.p-6 {
|
|
808
|
+
padding: calc(var(--spacing) * 6);
|
|
809
|
+
}
|
|
501
810
|
.p-\[4px\] {
|
|
502
811
|
padding: 4px;
|
|
503
812
|
}
|
|
504
813
|
.p-\[10px\] {
|
|
505
814
|
padding: 10px;
|
|
506
815
|
}
|
|
816
|
+
.px-2 {
|
|
817
|
+
padding-inline: calc(var(--spacing) * 2);
|
|
818
|
+
}
|
|
819
|
+
.px-3 {
|
|
820
|
+
padding-inline: calc(var(--spacing) * 3);
|
|
821
|
+
}
|
|
822
|
+
.px-6 {
|
|
823
|
+
padding-inline: calc(var(--spacing) * 6);
|
|
824
|
+
}
|
|
825
|
+
.px-\[8px\] {
|
|
826
|
+
padding-inline: 8px;
|
|
827
|
+
}
|
|
507
828
|
.px-\[16px\] {
|
|
508
829
|
padding-inline: 16px;
|
|
509
830
|
}
|
|
831
|
+
.px-\[20px\] {
|
|
832
|
+
padding-inline: 20px;
|
|
833
|
+
}
|
|
834
|
+
.py-1 {
|
|
835
|
+
padding-block: calc(var(--spacing) * 1);
|
|
836
|
+
}
|
|
837
|
+
.py-2 {
|
|
838
|
+
padding-block: calc(var(--spacing) * 2);
|
|
839
|
+
}
|
|
840
|
+
.py-4 {
|
|
841
|
+
padding-block: calc(var(--spacing) * 4);
|
|
842
|
+
}
|
|
843
|
+
.py-\[4px\] {
|
|
844
|
+
padding-block: 4px;
|
|
845
|
+
}
|
|
510
846
|
.py-\[8px\] {
|
|
511
847
|
padding-block: 8px;
|
|
512
848
|
}
|
|
849
|
+
.py-\[10px\] {
|
|
850
|
+
padding-block: 10px;
|
|
851
|
+
}
|
|
852
|
+
.pb-2 {
|
|
853
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
854
|
+
}
|
|
513
855
|
.text-left {
|
|
514
856
|
text-align: left;
|
|
515
857
|
}
|
|
858
|
+
.text-lg {
|
|
859
|
+
font-size: var(--text-lg);
|
|
860
|
+
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
861
|
+
}
|
|
862
|
+
.text-sm {
|
|
863
|
+
font-size: var(--text-sm);
|
|
864
|
+
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
865
|
+
}
|
|
866
|
+
.text-xs {
|
|
867
|
+
font-size: var(--text-xs);
|
|
868
|
+
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
869
|
+
}
|
|
516
870
|
.text-\[20px\] {
|
|
517
871
|
font-size: 20px;
|
|
518
872
|
}
|
|
873
|
+
.font-medium {
|
|
874
|
+
--tw-font-weight: var(--font-weight-medium);
|
|
875
|
+
font-weight: var(--font-weight-medium);
|
|
876
|
+
}
|
|
519
877
|
.font-semibold {
|
|
520
878
|
--tw-font-weight: var(--font-weight-semibold);
|
|
521
879
|
font-weight: var(--font-weight-semibold);
|
|
522
880
|
}
|
|
881
|
+
.text-nowrap {
|
|
882
|
+
text-wrap: nowrap;
|
|
883
|
+
}
|
|
884
|
+
.whitespace-nowrap {
|
|
885
|
+
white-space: nowrap;
|
|
886
|
+
}
|
|
523
887
|
.text-black {
|
|
524
888
|
color: var(--color-black);
|
|
525
889
|
}
|
|
890
|
+
.text-gray-300 {
|
|
891
|
+
color: var(--color-gray-300);
|
|
892
|
+
}
|
|
893
|
+
.text-gray-400 {
|
|
894
|
+
color: var(--color-gray-400);
|
|
895
|
+
}
|
|
896
|
+
.text-gray-500 {
|
|
897
|
+
color: var(--color-gray-500);
|
|
898
|
+
}
|
|
526
899
|
.text-gray-600 {
|
|
527
900
|
color: var(--color-gray-600);
|
|
528
901
|
}
|
|
902
|
+
.text-gray-700 {
|
|
903
|
+
color: var(--color-gray-700);
|
|
904
|
+
}
|
|
905
|
+
.text-green-600 {
|
|
906
|
+
color: var(--color-green-600);
|
|
907
|
+
}
|
|
908
|
+
.text-indigo-800 {
|
|
909
|
+
color: var(--color-indigo-800);
|
|
910
|
+
}
|
|
911
|
+
.text-red-500 {
|
|
912
|
+
color: var(--color-red-500);
|
|
913
|
+
}
|
|
529
914
|
.text-red-600 {
|
|
530
915
|
color: var(--color-red-600);
|
|
531
916
|
}
|
|
532
917
|
.text-white {
|
|
533
918
|
color: var(--color-white);
|
|
534
919
|
}
|
|
920
|
+
.uppercase {
|
|
921
|
+
text-transform: uppercase;
|
|
922
|
+
}
|
|
923
|
+
.italic {
|
|
924
|
+
font-style: italic;
|
|
925
|
+
}
|
|
926
|
+
.underline {
|
|
927
|
+
text-decoration-line: underline;
|
|
928
|
+
}
|
|
535
929
|
.opacity-0 {
|
|
536
930
|
opacity: 0%;
|
|
537
931
|
}
|
|
932
|
+
.opacity-50 {
|
|
933
|
+
opacity: 50%;
|
|
934
|
+
}
|
|
538
935
|
.opacity-100 {
|
|
539
936
|
opacity: 100%;
|
|
540
937
|
}
|
|
938
|
+
.shadow-2xl {
|
|
939
|
+
--tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
|
|
940
|
+
box-shadow:
|
|
941
|
+
var(--tw-inset-shadow),
|
|
942
|
+
var(--tw-inset-ring-shadow),
|
|
943
|
+
var(--tw-ring-offset-shadow),
|
|
944
|
+
var(--tw-ring-shadow),
|
|
945
|
+
var(--tw-shadow);
|
|
946
|
+
}
|
|
541
947
|
.shadow-md {
|
|
542
948
|
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
543
949
|
box-shadow:
|
|
@@ -547,10 +953,48 @@
|
|
|
547
953
|
var(--tw-ring-shadow),
|
|
548
954
|
var(--tw-shadow);
|
|
549
955
|
}
|
|
956
|
+
.shadow-sm {
|
|
957
|
+
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
958
|
+
box-shadow:
|
|
959
|
+
var(--tw-inset-shadow),
|
|
960
|
+
var(--tw-inset-ring-shadow),
|
|
961
|
+
var(--tw-ring-offset-shadow),
|
|
962
|
+
var(--tw-ring-shadow),
|
|
963
|
+
var(--tw-shadow);
|
|
964
|
+
}
|
|
550
965
|
.outline {
|
|
551
966
|
outline-style: var(--tw-outline-style);
|
|
552
967
|
outline-width: 1px;
|
|
553
968
|
}
|
|
969
|
+
.transition {
|
|
970
|
+
transition-property:
|
|
971
|
+
color,
|
|
972
|
+
background-color,
|
|
973
|
+
border-color,
|
|
974
|
+
outline-color,
|
|
975
|
+
text-decoration-color,
|
|
976
|
+
fill,
|
|
977
|
+
stroke,
|
|
978
|
+
--tw-gradient-from,
|
|
979
|
+
--tw-gradient-via,
|
|
980
|
+
--tw-gradient-to,
|
|
981
|
+
opacity,
|
|
982
|
+
box-shadow,
|
|
983
|
+
transform,
|
|
984
|
+
translate,
|
|
985
|
+
scale,
|
|
986
|
+
rotate,
|
|
987
|
+
filter,
|
|
988
|
+
-webkit-backdrop-filter,
|
|
989
|
+
backdrop-filter,
|
|
990
|
+
display,
|
|
991
|
+
visibility,
|
|
992
|
+
content-visibility,
|
|
993
|
+
overlay,
|
|
994
|
+
pointer-events;
|
|
995
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
996
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
997
|
+
}
|
|
554
998
|
.transition-all {
|
|
555
999
|
transition-property: all;
|
|
556
1000
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -592,6 +1036,37 @@
|
|
|
592
1036
|
--tw-duration: 300ms;
|
|
593
1037
|
transition-duration: 300ms;
|
|
594
1038
|
}
|
|
1039
|
+
.duration-400 {
|
|
1040
|
+
--tw-duration: 400ms;
|
|
1041
|
+
transition-duration: 400ms;
|
|
1042
|
+
}
|
|
1043
|
+
.select-none {
|
|
1044
|
+
-webkit-user-select: none;
|
|
1045
|
+
user-select: none;
|
|
1046
|
+
}
|
|
1047
|
+
.group-hover\:visible {
|
|
1048
|
+
&:is(:where(.group):hover *) {
|
|
1049
|
+
@media (hover: hover) {
|
|
1050
|
+
visibility: visible;
|
|
1051
|
+
}
|
|
1052
|
+
}
|
|
1053
|
+
}
|
|
1054
|
+
.group-hover\:translate-x-0 {
|
|
1055
|
+
&:is(:where(.group):hover *) {
|
|
1056
|
+
@media (hover: hover) {
|
|
1057
|
+
--tw-translate-x: calc(var(--spacing) * 0);
|
|
1058
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1059
|
+
}
|
|
1060
|
+
}
|
|
1061
|
+
}
|
|
1062
|
+
.group-hover\:border-2 {
|
|
1063
|
+
&:is(:where(.group):hover *) {
|
|
1064
|
+
@media (hover: hover) {
|
|
1065
|
+
border-style: var(--tw-border-style);
|
|
1066
|
+
border-width: 2px;
|
|
1067
|
+
}
|
|
1068
|
+
}
|
|
1069
|
+
}
|
|
595
1070
|
.group-hover\:border-\[1px\] {
|
|
596
1071
|
&:is(:where(.group):hover *) {
|
|
597
1072
|
@media (hover: hover) {
|
|
@@ -607,6 +1082,13 @@
|
|
|
607
1082
|
}
|
|
608
1083
|
}
|
|
609
1084
|
}
|
|
1085
|
+
.group-hover\:border-red-500 {
|
|
1086
|
+
&:is(:where(.group):hover *) {
|
|
1087
|
+
@media (hover: hover) {
|
|
1088
|
+
border-color: var(--color-red-500);
|
|
1089
|
+
}
|
|
1090
|
+
}
|
|
1091
|
+
}
|
|
610
1092
|
.group-hover\:bg-white {
|
|
611
1093
|
&:is(:where(.group):hover *) {
|
|
612
1094
|
@media (hover: hover) {
|
|
@@ -621,6 +1103,13 @@
|
|
|
621
1103
|
}
|
|
622
1104
|
}
|
|
623
1105
|
}
|
|
1106
|
+
.group-hover\:opacity-100 {
|
|
1107
|
+
&:is(:where(.group):hover *) {
|
|
1108
|
+
@media (hover: hover) {
|
|
1109
|
+
opacity: 100%;
|
|
1110
|
+
}
|
|
1111
|
+
}
|
|
1112
|
+
}
|
|
624
1113
|
.group-active\:block {
|
|
625
1114
|
&:is(:where(.group):active *) {
|
|
626
1115
|
display: block;
|
|
@@ -641,6 +1130,34 @@
|
|
|
641
1130
|
color: var(--color-white);
|
|
642
1131
|
}
|
|
643
1132
|
}
|
|
1133
|
+
.hover\:border-primary-200 {
|
|
1134
|
+
&:hover {
|
|
1135
|
+
@media (hover: hover) {
|
|
1136
|
+
border-color: var(--color-primary-200);
|
|
1137
|
+
}
|
|
1138
|
+
}
|
|
1139
|
+
}
|
|
1140
|
+
.hover\:bg-\[\#d6d6d6\] {
|
|
1141
|
+
&:hover {
|
|
1142
|
+
@media (hover: hover) {
|
|
1143
|
+
background-color: #d6d6d6;
|
|
1144
|
+
}
|
|
1145
|
+
}
|
|
1146
|
+
}
|
|
1147
|
+
.hover\:bg-gray-100 {
|
|
1148
|
+
&:hover {
|
|
1149
|
+
@media (hover: hover) {
|
|
1150
|
+
background-color: var(--color-gray-100);
|
|
1151
|
+
}
|
|
1152
|
+
}
|
|
1153
|
+
}
|
|
1154
|
+
.hover\:bg-gray-200 {
|
|
1155
|
+
&:hover {
|
|
1156
|
+
@media (hover: hover) {
|
|
1157
|
+
background-color: var(--color-gray-200);
|
|
1158
|
+
}
|
|
1159
|
+
}
|
|
1160
|
+
}
|
|
644
1161
|
.hover\:bg-red-100 {
|
|
645
1162
|
&:hover {
|
|
646
1163
|
@media (hover: hover) {
|
|
@@ -648,6 +1165,62 @@
|
|
|
648
1165
|
}
|
|
649
1166
|
}
|
|
650
1167
|
}
|
|
1168
|
+
.hover\:bg-transparent {
|
|
1169
|
+
&:hover {
|
|
1170
|
+
@media (hover: hover) {
|
|
1171
|
+
background-color: transparent;
|
|
1172
|
+
}
|
|
1173
|
+
}
|
|
1174
|
+
}
|
|
1175
|
+
.hover\:text-black {
|
|
1176
|
+
&:hover {
|
|
1177
|
+
@media (hover: hover) {
|
|
1178
|
+
color: var(--color-black);
|
|
1179
|
+
}
|
|
1180
|
+
}
|
|
1181
|
+
}
|
|
1182
|
+
.hover\:text-blue-800 {
|
|
1183
|
+
&:hover {
|
|
1184
|
+
@media (hover: hover) {
|
|
1185
|
+
color: var(--color-blue-800);
|
|
1186
|
+
}
|
|
1187
|
+
}
|
|
1188
|
+
}
|
|
1189
|
+
.hover\:text-gray-400 {
|
|
1190
|
+
&:hover {
|
|
1191
|
+
@media (hover: hover) {
|
|
1192
|
+
color: var(--color-gray-400);
|
|
1193
|
+
}
|
|
1194
|
+
}
|
|
1195
|
+
}
|
|
1196
|
+
.hover\:text-primary-400 {
|
|
1197
|
+
&:hover {
|
|
1198
|
+
@media (hover: hover) {
|
|
1199
|
+
color: var(--color-primary-400);
|
|
1200
|
+
}
|
|
1201
|
+
}
|
|
1202
|
+
}
|
|
1203
|
+
.hover\:text-red-400 {
|
|
1204
|
+
&:hover {
|
|
1205
|
+
@media (hover: hover) {
|
|
1206
|
+
color: var(--color-red-400);
|
|
1207
|
+
}
|
|
1208
|
+
}
|
|
1209
|
+
}
|
|
1210
|
+
.hover\:text-red-500 {
|
|
1211
|
+
&:hover {
|
|
1212
|
+
@media (hover: hover) {
|
|
1213
|
+
color: var(--color-red-500);
|
|
1214
|
+
}
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
.hover\:text-red-700 {
|
|
1218
|
+
&:hover {
|
|
1219
|
+
@media (hover: hover) {
|
|
1220
|
+
color: var(--color-red-700);
|
|
1221
|
+
}
|
|
1222
|
+
}
|
|
1223
|
+
}
|
|
651
1224
|
.hover\:text-white {
|
|
652
1225
|
&:hover {
|
|
653
1226
|
@media (hover: hover) {
|
|
@@ -655,16 +1228,67 @@
|
|
|
655
1228
|
}
|
|
656
1229
|
}
|
|
657
1230
|
}
|
|
1231
|
+
.hover\:underline {
|
|
1232
|
+
&:hover {
|
|
1233
|
+
@media (hover: hover) {
|
|
1234
|
+
text-decoration-line: underline;
|
|
1235
|
+
}
|
|
1236
|
+
}
|
|
1237
|
+
}
|
|
1238
|
+
.hover\:brightness-95 {
|
|
1239
|
+
&:hover {
|
|
1240
|
+
@media (hover: hover) {
|
|
1241
|
+
--tw-brightness: brightness(95%);
|
|
1242
|
+
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,);
|
|
1243
|
+
}
|
|
1244
|
+
}
|
|
1245
|
+
}
|
|
1246
|
+
.active\:bg-\[\#c4c4c4\] {
|
|
1247
|
+
&:active {
|
|
1248
|
+
background-color: #c4c4c4;
|
|
1249
|
+
}
|
|
1250
|
+
}
|
|
1251
|
+
.active\:bg-gray-200 {
|
|
1252
|
+
&:active {
|
|
1253
|
+
background-color: var(--color-gray-200);
|
|
1254
|
+
}
|
|
1255
|
+
}
|
|
658
1256
|
.active\:bg-primary-500 {
|
|
659
1257
|
&:active {
|
|
660
1258
|
background-color: var(--color-primary-500);
|
|
661
1259
|
}
|
|
662
1260
|
}
|
|
1261
|
+
.active\:bg-transparent {
|
|
1262
|
+
&:active {
|
|
1263
|
+
background-color: transparent;
|
|
1264
|
+
}
|
|
1265
|
+
}
|
|
1266
|
+
.active\:text-black {
|
|
1267
|
+
&:active {
|
|
1268
|
+
color: var(--color-black);
|
|
1269
|
+
}
|
|
1270
|
+
}
|
|
1271
|
+
.active\:text-gray-400 {
|
|
1272
|
+
&:active {
|
|
1273
|
+
color: var(--color-gray-400);
|
|
1274
|
+
}
|
|
1275
|
+
}
|
|
663
1276
|
.active\:text-white {
|
|
664
1277
|
&:active {
|
|
665
1278
|
color: var(--color-white);
|
|
666
1279
|
}
|
|
667
1280
|
}
|
|
1281
|
+
.active\:brightness-90 {
|
|
1282
|
+
&:active {
|
|
1283
|
+
--tw-brightness: brightness(90%);
|
|
1284
|
+
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,);
|
|
1285
|
+
}
|
|
1286
|
+
}
|
|
1287
|
+
.disabled\:opacity-50 {
|
|
1288
|
+
&:disabled {
|
|
1289
|
+
opacity: 50%;
|
|
1290
|
+
}
|
|
1291
|
+
}
|
|
668
1292
|
}
|
|
669
1293
|
@layer base {
|
|
670
1294
|
*,
|
|
@@ -864,6 +1488,33 @@
|
|
|
864
1488
|
font-weight: 400;
|
|
865
1489
|
line-height: 16px;
|
|
866
1490
|
}
|
|
1491
|
+
.fc-scrollgrid-shrink-cushion {
|
|
1492
|
+
font-family: "Kanit";
|
|
1493
|
+
font-size: 14px;
|
|
1494
|
+
font-style: normal;
|
|
1495
|
+
font-weight: 400;
|
|
1496
|
+
line-height: 20px;
|
|
1497
|
+
}
|
|
1498
|
+
.message {
|
|
1499
|
+
font-family: "Kanit";
|
|
1500
|
+
font-size: 12px;
|
|
1501
|
+
font-style: normal;
|
|
1502
|
+
font-weight: 400;
|
|
1503
|
+
line-height: 16px;
|
|
1504
|
+
}
|
|
1505
|
+
.custom-select .ant-select-selection-item {
|
|
1506
|
+
color: #fff !important;
|
|
1507
|
+
}
|
|
1508
|
+
:where(.css-dev-only-do-not-override-mfr87o).ant-color-picker-trigger {
|
|
1509
|
+
justify-content: left;
|
|
1510
|
+
}
|
|
1511
|
+
@layer utilities {
|
|
1512
|
+
.container-input {
|
|
1513
|
+
display: flex;
|
|
1514
|
+
flex-direction: column;
|
|
1515
|
+
gap: 8px;
|
|
1516
|
+
}
|
|
1517
|
+
}
|
|
867
1518
|
@property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
|
|
868
1519
|
@property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
|
|
869
1520
|
@property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
|
|
@@ -875,6 +1526,8 @@
|
|
|
875
1526
|
@property --tw-rotate-z { syntax: "*"; inherits: false; }
|
|
876
1527
|
@property --tw-skew-x { syntax: "*"; inherits: false; }
|
|
877
1528
|
@property --tw-skew-y { syntax: "*"; inherits: false; }
|
|
1529
|
+
@property --tw-space-y-reverse { syntax: "*"; inherits: false; initial-value: 0; }
|
|
1530
|
+
@property --tw-space-x-reverse { syntax: "*"; inherits: false; initial-value: 0; }
|
|
878
1531
|
@property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
|
|
879
1532
|
@property --tw-font-weight { syntax: "*"; inherits: false; }
|
|
880
1533
|
@property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
|
|
@@ -893,6 +1546,19 @@
|
|
|
893
1546
|
@property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
|
|
894
1547
|
@property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
|
|
895
1548
|
@property --tw-duration { syntax: "*"; inherits: false; }
|
|
1549
|
+
@property --tw-blur { syntax: "*"; inherits: false; }
|
|
1550
|
+
@property --tw-brightness { syntax: "*"; inherits: false; }
|
|
1551
|
+
@property --tw-contrast { syntax: "*"; inherits: false; }
|
|
1552
|
+
@property --tw-grayscale { syntax: "*"; inherits: false; }
|
|
1553
|
+
@property --tw-hue-rotate { syntax: "*"; inherits: false; }
|
|
1554
|
+
@property --tw-invert { syntax: "*"; inherits: false; }
|
|
1555
|
+
@property --tw-opacity { syntax: "*"; inherits: false; }
|
|
1556
|
+
@property --tw-saturate { syntax: "*"; inherits: false; }
|
|
1557
|
+
@property --tw-sepia { syntax: "*"; inherits: false; }
|
|
1558
|
+
@property --tw-drop-shadow { syntax: "*"; inherits: false; }
|
|
1559
|
+
@property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
|
|
1560
|
+
@property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
|
|
1561
|
+
@property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
|
|
896
1562
|
@keyframes spin {
|
|
897
1563
|
to {
|
|
898
1564
|
transform: rotate(360deg);
|
|
@@ -915,6 +1581,8 @@
|
|
|
915
1581
|
--tw-rotate-z: initial;
|
|
916
1582
|
--tw-skew-x: initial;
|
|
917
1583
|
--tw-skew-y: initial;
|
|
1584
|
+
--tw-space-y-reverse: 0;
|
|
1585
|
+
--tw-space-x-reverse: 0;
|
|
918
1586
|
--tw-border-style: solid;
|
|
919
1587
|
--tw-font-weight: initial;
|
|
920
1588
|
--tw-shadow: 0 0 #0000;
|
|
@@ -933,6 +1601,19 @@
|
|
|
933
1601
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
934
1602
|
--tw-outline-style: solid;
|
|
935
1603
|
--tw-duration: initial;
|
|
1604
|
+
--tw-blur: initial;
|
|
1605
|
+
--tw-brightness: initial;
|
|
1606
|
+
--tw-contrast: initial;
|
|
1607
|
+
--tw-grayscale: initial;
|
|
1608
|
+
--tw-hue-rotate: initial;
|
|
1609
|
+
--tw-invert: initial;
|
|
1610
|
+
--tw-opacity: initial;
|
|
1611
|
+
--tw-saturate: initial;
|
|
1612
|
+
--tw-sepia: initial;
|
|
1613
|
+
--tw-drop-shadow: initial;
|
|
1614
|
+
--tw-drop-shadow-color: initial;
|
|
1615
|
+
--tw-drop-shadow-alpha: 100%;
|
|
1616
|
+
--tw-drop-shadow-size: initial;
|
|
936
1617
|
}
|
|
937
1618
|
}
|
|
938
1619
|
}
|