@parto-system-design/ui 1.1.4 → 1.1.5
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/index.cjs +15603 -5727
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +753 -119
- package/dist/index.d.cts +2980 -229
- package/dist/index.d.ts +2980 -229
- package/dist/index.js +15609 -5870
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/tailwind.config.ts +61 -2
package/dist/index.css
CHANGED
|
@@ -7,6 +7,9 @@
|
|
|
7
7
|
.pointer-events-none {
|
|
8
8
|
pointer-events: none;
|
|
9
9
|
}
|
|
10
|
+
.collapse {
|
|
11
|
+
visibility: collapse;
|
|
12
|
+
}
|
|
10
13
|
.invisible {
|
|
11
14
|
visibility: hidden;
|
|
12
15
|
}
|
|
@@ -60,6 +63,9 @@
|
|
|
60
63
|
.top-full {
|
|
61
64
|
top: 100%;
|
|
62
65
|
}
|
|
66
|
+
.bottom-\[-0\.75rem\] {
|
|
67
|
+
bottom: -0.75rem;
|
|
68
|
+
}
|
|
63
69
|
.left-1\/2 {
|
|
64
70
|
left: calc(1 / 2 * 100%);
|
|
65
71
|
}
|
|
@@ -81,9 +87,15 @@
|
|
|
81
87
|
.z-\[1\] {
|
|
82
88
|
z-index: 1;
|
|
83
89
|
}
|
|
90
|
+
.z-\[2\] {
|
|
91
|
+
z-index: 2;
|
|
92
|
+
}
|
|
84
93
|
.z-\[9999\] {
|
|
85
94
|
z-index: 9999;
|
|
86
95
|
}
|
|
96
|
+
.z-\[calc\(var\(--z-tooltip\)\+1\)\] {
|
|
97
|
+
z-index: calc(var(--z-tooltip) + 1);
|
|
98
|
+
}
|
|
87
99
|
.z-overlay {
|
|
88
100
|
z-index: var(--z-overlay);
|
|
89
101
|
}
|
|
@@ -96,6 +108,9 @@
|
|
|
96
108
|
.order-last {
|
|
97
109
|
order: 9999;
|
|
98
110
|
}
|
|
111
|
+
.row-0 {
|
|
112
|
+
grid-row: 0;
|
|
113
|
+
}
|
|
99
114
|
.container {
|
|
100
115
|
width: 100%;
|
|
101
116
|
}
|
|
@@ -109,12 +124,6 @@
|
|
|
109
124
|
.mx-auto {
|
|
110
125
|
margin-inline: auto;
|
|
111
126
|
}
|
|
112
|
-
.-my-\[1px\] {
|
|
113
|
-
margin-block: calc(1px * -1);
|
|
114
|
-
}
|
|
115
|
-
.-ms-\[1px\] {
|
|
116
|
-
margin-inline-start: calc(1px * -1);
|
|
117
|
-
}
|
|
118
127
|
.ms-auto {
|
|
119
128
|
margin-inline-start: auto;
|
|
120
129
|
}
|
|
@@ -172,9 +181,19 @@
|
|
|
172
181
|
.field-sizing-content {
|
|
173
182
|
field-sizing: content;
|
|
174
183
|
}
|
|
184
|
+
.aspect-\[4\/5\] {
|
|
185
|
+
aspect-ratio: 4/5;
|
|
186
|
+
}
|
|
187
|
+
.aspect-\[21\/9\] {
|
|
188
|
+
aspect-ratio: 21/9;
|
|
189
|
+
}
|
|
175
190
|
.aspect-square {
|
|
176
191
|
aspect-ratio: 1 / 1;
|
|
177
192
|
}
|
|
193
|
+
.size-\[14px\] {
|
|
194
|
+
width: 14px;
|
|
195
|
+
height: 14px;
|
|
196
|
+
}
|
|
178
197
|
.size-\[18px\] {
|
|
179
198
|
width: 18px;
|
|
180
199
|
height: 18px;
|
|
@@ -183,12 +202,18 @@
|
|
|
183
202
|
width: 100%;
|
|
184
203
|
height: 100%;
|
|
185
204
|
}
|
|
205
|
+
.h-\[1\.125rem\] {
|
|
206
|
+
height: 1.125rem;
|
|
207
|
+
}
|
|
186
208
|
.h-\[1px\] {
|
|
187
209
|
height: 1px;
|
|
188
210
|
}
|
|
189
211
|
.h-\[16px\] {
|
|
190
212
|
height: 16px;
|
|
191
213
|
}
|
|
214
|
+
.h-\[18px\] {
|
|
215
|
+
height: 18px;
|
|
216
|
+
}
|
|
192
217
|
.h-\[20px\] {
|
|
193
218
|
height: 20px;
|
|
194
219
|
}
|
|
@@ -246,12 +271,27 @@
|
|
|
246
271
|
.max-h-\(--radix-dropdown-menu-content-available-height\) {
|
|
247
272
|
max-height: var(--radix-dropdown-menu-content-available-height);
|
|
248
273
|
}
|
|
274
|
+
.max-h-\[70vh\] {
|
|
275
|
+
max-height: 70vh;
|
|
276
|
+
}
|
|
277
|
+
.max-h-\[90vh\] {
|
|
278
|
+
max-height: 90vh;
|
|
279
|
+
}
|
|
249
280
|
.max-h-\[300px\] {
|
|
250
281
|
max-height: 300px;
|
|
251
282
|
}
|
|
283
|
+
.max-h-full {
|
|
284
|
+
max-height: 100%;
|
|
285
|
+
}
|
|
252
286
|
.min-h-\[34px\] {
|
|
253
287
|
min-height: 34px;
|
|
254
288
|
}
|
|
289
|
+
.min-h-\[72px\] {
|
|
290
|
+
min-height: 72px;
|
|
291
|
+
}
|
|
292
|
+
.min-h-\[160px\] {
|
|
293
|
+
min-height: 160px;
|
|
294
|
+
}
|
|
255
295
|
.min-h-\[200px\] {
|
|
256
296
|
min-height: 200px;
|
|
257
297
|
}
|
|
@@ -282,33 +322,51 @@
|
|
|
282
322
|
.w-1\/4 {
|
|
283
323
|
width: calc(1 / 4 * 100%);
|
|
284
324
|
}
|
|
325
|
+
.w-2\/3 {
|
|
326
|
+
width: calc(2 / 3 * 100%);
|
|
327
|
+
}
|
|
285
328
|
.w-3\/4 {
|
|
286
329
|
width: calc(3 / 4 * 100%);
|
|
287
330
|
}
|
|
331
|
+
.w-3\/5 {
|
|
332
|
+
width: calc(3 / 5 * 100%);
|
|
333
|
+
}
|
|
334
|
+
.w-4\/6 {
|
|
335
|
+
width: calc(4 / 6 * 100%);
|
|
336
|
+
}
|
|
337
|
+
.w-5\/6 {
|
|
338
|
+
width: calc(5 / 6 * 100%);
|
|
339
|
+
}
|
|
288
340
|
.w-\[--radix-popover-trigger-width\] {
|
|
289
341
|
width: --radix-popover-trigger-width;
|
|
290
342
|
}
|
|
291
343
|
.w-\[1px\] {
|
|
292
344
|
width: 1px;
|
|
293
345
|
}
|
|
294
|
-
.w-\[20\%\] {
|
|
295
|
-
width: 20%;
|
|
296
|
-
}
|
|
297
346
|
.w-\[28px\] {
|
|
298
347
|
width: 28px;
|
|
299
348
|
}
|
|
300
349
|
.w-\[34px\] {
|
|
301
350
|
width: 34px;
|
|
302
351
|
}
|
|
352
|
+
.w-\[36px\] {
|
|
353
|
+
width: 36px;
|
|
354
|
+
}
|
|
303
355
|
.w-\[40px\] {
|
|
304
356
|
width: 40px;
|
|
305
357
|
}
|
|
306
358
|
.w-\[44px\] {
|
|
307
359
|
width: 44px;
|
|
308
360
|
}
|
|
361
|
+
.w-\[95vw\] {
|
|
362
|
+
width: 95vw;
|
|
363
|
+
}
|
|
309
364
|
.w-\[100px\] {
|
|
310
365
|
width: 100px;
|
|
311
366
|
}
|
|
367
|
+
.w-\[140px\] {
|
|
368
|
+
width: 140px;
|
|
369
|
+
}
|
|
312
370
|
.w-auto {
|
|
313
371
|
width: auto;
|
|
314
372
|
}
|
|
@@ -327,18 +385,30 @@
|
|
|
327
385
|
.max-w-\(--skeleton-width\) {
|
|
328
386
|
max-width: var(--skeleton-width);
|
|
329
387
|
}
|
|
388
|
+
.max-w-\[8rem\] {
|
|
389
|
+
max-width: 8rem;
|
|
390
|
+
}
|
|
330
391
|
.max-w-\[120px\] {
|
|
331
392
|
max-width: 120px;
|
|
332
393
|
}
|
|
394
|
+
.max-w-\[140px\] {
|
|
395
|
+
max-width: 140px;
|
|
396
|
+
}
|
|
333
397
|
.max-w-\[calc\(100\%-2rem\)\] {
|
|
334
398
|
max-width: calc(100% - 2rem);
|
|
335
399
|
}
|
|
400
|
+
.max-w-full {
|
|
401
|
+
max-width: 100%;
|
|
402
|
+
}
|
|
336
403
|
.max-w-max {
|
|
337
404
|
max-width: max-content;
|
|
338
405
|
}
|
|
339
406
|
.min-w-\[1\.25rem\] {
|
|
340
407
|
min-width: 1.25rem;
|
|
341
408
|
}
|
|
409
|
+
.min-w-\[1\.125rem\] {
|
|
410
|
+
min-width: 1.125rem;
|
|
411
|
+
}
|
|
342
412
|
.min-w-\[8rem\] {
|
|
343
413
|
min-width: 8rem;
|
|
344
414
|
}
|
|
@@ -348,9 +418,15 @@
|
|
|
348
418
|
.min-w-\[12rem\] {
|
|
349
419
|
min-width: 12rem;
|
|
350
420
|
}
|
|
421
|
+
.min-w-\[18px\] {
|
|
422
|
+
min-width: 18px;
|
|
423
|
+
}
|
|
351
424
|
.min-w-\[80px\] {
|
|
352
425
|
min-width: 80px;
|
|
353
426
|
}
|
|
427
|
+
.min-w-\[200px\] {
|
|
428
|
+
min-width: 200px;
|
|
429
|
+
}
|
|
354
430
|
.min-w-\[220px\] {
|
|
355
431
|
min-width: 220px;
|
|
356
432
|
}
|
|
@@ -393,6 +469,9 @@
|
|
|
393
469
|
.origin-\[--radix-popover-content-transform-origin\] {
|
|
394
470
|
transform-origin: --radix-popover-content-transform-origin;
|
|
395
471
|
}
|
|
472
|
+
.origin-\[inline-start\] {
|
|
473
|
+
transform-origin: inline-start;
|
|
474
|
+
}
|
|
396
475
|
.origin-left {
|
|
397
476
|
transform-origin: 0;
|
|
398
477
|
}
|
|
@@ -424,9 +503,18 @@
|
|
|
424
503
|
--tw-translate-y: -50%;
|
|
425
504
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
426
505
|
}
|
|
506
|
+
.scale-110 {
|
|
507
|
+
--tw-scale-x: 110%;
|
|
508
|
+
--tw-scale-y: 110%;
|
|
509
|
+
--tw-scale-z: 110%;
|
|
510
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
511
|
+
}
|
|
427
512
|
.-rotate-90 {
|
|
428
513
|
rotate: calc(90deg * -1);
|
|
429
514
|
}
|
|
515
|
+
.rotate-0 {
|
|
516
|
+
rotate: 0deg;
|
|
517
|
+
}
|
|
430
518
|
.rotate-45 {
|
|
431
519
|
rotate: 45deg;
|
|
432
520
|
}
|
|
@@ -445,6 +533,9 @@
|
|
|
445
533
|
.cursor-default {
|
|
446
534
|
cursor: default;
|
|
447
535
|
}
|
|
536
|
+
.cursor-grab {
|
|
537
|
+
cursor: grab;
|
|
538
|
+
}
|
|
448
539
|
.cursor-help {
|
|
449
540
|
cursor: help;
|
|
450
541
|
}
|
|
@@ -481,6 +572,18 @@
|
|
|
481
572
|
.grid-cols-2 {
|
|
482
573
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
483
574
|
}
|
|
575
|
+
.grid-cols-3 {
|
|
576
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
577
|
+
}
|
|
578
|
+
.grid-cols-4 {
|
|
579
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
580
|
+
}
|
|
581
|
+
.grid-cols-\[auto_auto_auto_1fr_auto_auto\] {
|
|
582
|
+
grid-template-columns: auto auto auto 1fr auto auto;
|
|
583
|
+
}
|
|
584
|
+
.grid-cols-\[repeat\(auto-fit\,minmax\(7rem\,1fr\)\)\] {
|
|
585
|
+
grid-template-columns: repeat(auto-fit,minmax(7rem,1fr));
|
|
586
|
+
}
|
|
484
587
|
.flex-col {
|
|
485
588
|
flex-direction: column;
|
|
486
589
|
}
|
|
@@ -523,6 +626,26 @@
|
|
|
523
626
|
.justify-start {
|
|
524
627
|
justify-content: flex-start;
|
|
525
628
|
}
|
|
629
|
+
.divide-y {
|
|
630
|
+
:where(& > :not(:last-child)) {
|
|
631
|
+
--tw-divide-y-reverse: 0;
|
|
632
|
+
border-bottom-style: var(--tw-border-style);
|
|
633
|
+
border-top-style: var(--tw-border-style);
|
|
634
|
+
border-top-width: calc(1px * var(--tw-divide-y-reverse));
|
|
635
|
+
border-bottom-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
.divide-border-muted {
|
|
639
|
+
:where(& > :not(:last-child)) {
|
|
640
|
+
border-color: hsl(var(--border-muted));
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
|
+
.self-center {
|
|
644
|
+
align-self: center;
|
|
645
|
+
}
|
|
646
|
+
.self-start {
|
|
647
|
+
align-self: flex-start;
|
|
648
|
+
}
|
|
526
649
|
.self-stretch {
|
|
527
650
|
align-self: stretch;
|
|
528
651
|
}
|
|
@@ -579,10 +702,6 @@
|
|
|
579
702
|
.rounded-xs {
|
|
580
703
|
border-radius: var(--borderradius-xs);
|
|
581
704
|
}
|
|
582
|
-
.rounded-e-lg {
|
|
583
|
-
border-start-end-radius: var(--radius);
|
|
584
|
-
border-end-end-radius: var(--radius);
|
|
585
|
-
}
|
|
586
705
|
.rounded-tl-sm {
|
|
587
706
|
border-top-left-radius: calc(var(--radius) - 4px);
|
|
588
707
|
}
|
|
@@ -618,6 +737,10 @@
|
|
|
618
737
|
border-top-style: var(--tw-border-style);
|
|
619
738
|
border-top-width: var(--borderwidth-xs);
|
|
620
739
|
}
|
|
740
|
+
.border-t-0 {
|
|
741
|
+
border-top-style: var(--tw-border-style);
|
|
742
|
+
border-top-width: var(--borderwidth-none);
|
|
743
|
+
}
|
|
621
744
|
.border-r-\[6px\] {
|
|
622
745
|
border-right-style: var(--tw-border-style);
|
|
623
746
|
border-right-width: 6px;
|
|
@@ -653,6 +776,12 @@
|
|
|
653
776
|
.border {
|
|
654
777
|
border-color: hsl(var(--border-default));
|
|
655
778
|
}
|
|
779
|
+
.border-\[hsl\(var\(--brand\)\/0\.3\)\] {
|
|
780
|
+
border-color: hsl(var(--brand)/0.3);
|
|
781
|
+
}
|
|
782
|
+
.border-\[hsl\(var\(--destructive-default\)\/0\.3\)\] {
|
|
783
|
+
border-color: hsl(var(--destructive-default)/0.3);
|
|
784
|
+
}
|
|
656
785
|
.border-\[hsl\(var\(--score-excellent\)\/0\.25\)\] {
|
|
657
786
|
border-color: hsl(var(--score-excellent)/0.25);
|
|
658
787
|
}
|
|
@@ -680,12 +809,24 @@
|
|
|
680
809
|
.border-border-muted {
|
|
681
810
|
border-color: hsl(var(--border-muted));
|
|
682
811
|
}
|
|
812
|
+
.border-border\/40 {
|
|
813
|
+
border-color: hsl(var(--border-default));
|
|
814
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
815
|
+
border-color: color-mix(in oklab, hsl(var(--border-default)) 40%, transparent);
|
|
816
|
+
}
|
|
817
|
+
}
|
|
683
818
|
.border-border\/50 {
|
|
684
819
|
border-color: hsl(var(--border-default));
|
|
685
820
|
@supports (color: color-mix(in lab, red, red)) {
|
|
686
821
|
border-color: color-mix(in oklab, hsl(var(--border-default)) 50%, transparent);
|
|
687
822
|
}
|
|
688
823
|
}
|
|
824
|
+
.border-border\/60 {
|
|
825
|
+
border-color: hsl(var(--border-default));
|
|
826
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
827
|
+
border-color: color-mix(in oklab, hsl(var(--border-default)) 60%, transparent);
|
|
828
|
+
}
|
|
829
|
+
}
|
|
689
830
|
.border-brand {
|
|
690
831
|
border-color: hsl(var(--brand-default));
|
|
691
832
|
}
|
|
@@ -701,6 +842,12 @@
|
|
|
701
842
|
border-color: color-mix(in oklab, hsl(var(--brand-500)) 75%, transparent);
|
|
702
843
|
}
|
|
703
844
|
}
|
|
845
|
+
.border-brand\/50 {
|
|
846
|
+
border-color: hsl(var(--brand-default));
|
|
847
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
848
|
+
border-color: color-mix(in oklab, hsl(var(--brand-default)) 50%, transparent);
|
|
849
|
+
}
|
|
850
|
+
}
|
|
704
851
|
.border-button {
|
|
705
852
|
border-color: hsl(var(--border-button-default));
|
|
706
853
|
}
|
|
@@ -785,9 +932,39 @@
|
|
|
785
932
|
.bg {
|
|
786
933
|
background-color: hsl(var(--background-default));
|
|
787
934
|
}
|
|
935
|
+
.bg-\[hsl\(0_0\%_0\%\/0\.2\)\] {
|
|
936
|
+
background-color: hsl(0 0% 0%/0.2);
|
|
937
|
+
}
|
|
938
|
+
.bg-\[hsl\(0_0\%_0\%\/0\.6\)\] {
|
|
939
|
+
background-color: hsl(0 0% 0%/0.6);
|
|
940
|
+
}
|
|
941
|
+
.bg-\[hsl\(var\(--brand\)\/0\.1\)\] {
|
|
942
|
+
background-color: hsl(var(--brand)/0.1);
|
|
943
|
+
}
|
|
944
|
+
.bg-\[hsl\(var\(--brand\)\/0\.02\)\] {
|
|
945
|
+
background-color: hsl(var(--brand)/0.02);
|
|
946
|
+
}
|
|
947
|
+
.bg-\[hsl\(var\(--brand\)\/0\.04\)\] {
|
|
948
|
+
background-color: hsl(var(--brand)/0.04);
|
|
949
|
+
}
|
|
950
|
+
.bg-\[hsl\(var\(--brand\)\/0\.06\)\] {
|
|
951
|
+
background-color: hsl(var(--brand)/0.06);
|
|
952
|
+
}
|
|
953
|
+
.bg-\[hsl\(var\(--brand\)\/0\.08\)\] {
|
|
954
|
+
background-color: hsl(var(--brand)/0.08);
|
|
955
|
+
}
|
|
788
956
|
.bg-\[hsl\(var\(--brand-default\)\)\] {
|
|
789
957
|
background-color: hsl(var(--brand-default));
|
|
790
958
|
}
|
|
959
|
+
.bg-\[hsl\(var\(--destructive-default\)\)\] {
|
|
960
|
+
background-color: hsl(var(--destructive-default));
|
|
961
|
+
}
|
|
962
|
+
.bg-\[hsl\(var\(--destructive-default\)\/0\.08\)\] {
|
|
963
|
+
background-color: hsl(var(--destructive-default)/0.08);
|
|
964
|
+
}
|
|
965
|
+
.bg-\[hsl\(var\(--destructive-default\)\/0\.12\)\] {
|
|
966
|
+
background-color: hsl(var(--destructive-default)/0.12);
|
|
967
|
+
}
|
|
791
968
|
.bg-\[hsl\(var\(--score-excellent-bg\)\)\] {
|
|
792
969
|
background-color: hsl(var(--score-excellent-bg));
|
|
793
970
|
}
|
|
@@ -809,6 +986,9 @@
|
|
|
809
986
|
.bg-\[hsl\(var\(--sentiment-negative\)\/0\.1\)\] {
|
|
810
987
|
background-color: hsl(var(--sentiment-negative)/0.1);
|
|
811
988
|
}
|
|
989
|
+
.bg-\[hsl\(var\(--sentiment-negative\)\/0\.05\)\] {
|
|
990
|
+
background-color: hsl(var(--sentiment-negative)/0.05);
|
|
991
|
+
}
|
|
812
992
|
.bg-\[hsl\(var\(--sentiment-negative\)\/0\.12\)\] {
|
|
813
993
|
background-color: hsl(var(--sentiment-negative)/0.12);
|
|
814
994
|
}
|
|
@@ -830,6 +1010,12 @@
|
|
|
830
1010
|
.bg-\[hsl\(var\(--sentiment-positive\)\/0\.12\)\] {
|
|
831
1011
|
background-color: hsl(var(--sentiment-positive)/0.12);
|
|
832
1012
|
}
|
|
1013
|
+
.bg-\[hsl\(var\(--warning-default\)\)\] {
|
|
1014
|
+
background-color: hsl(var(--warning-default));
|
|
1015
|
+
}
|
|
1016
|
+
.bg-\[hsl\(var\(--warning-default\)\/0\.12\)\] {
|
|
1017
|
+
background-color: hsl(var(--warning-default)/0.12);
|
|
1018
|
+
}
|
|
833
1019
|
.bg-accent {
|
|
834
1020
|
background-color: hsl(var(--background-surface-200));
|
|
835
1021
|
}
|
|
@@ -845,6 +1031,33 @@
|
|
|
845
1031
|
.bg-background-muted {
|
|
846
1032
|
background-color: hsl(var(--background-muted));
|
|
847
1033
|
}
|
|
1034
|
+
.bg-background-muted\/20 {
|
|
1035
|
+
background-color: hsl(var(--background-muted));
|
|
1036
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1037
|
+
background-color: color-mix(in oklab, hsl(var(--background-muted)) 20%, transparent);
|
|
1038
|
+
}
|
|
1039
|
+
}
|
|
1040
|
+
.bg-background-muted\/30 {
|
|
1041
|
+
background-color: hsl(var(--background-muted));
|
|
1042
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1043
|
+
background-color: color-mix(in oklab, hsl(var(--background-muted)) 30%, transparent);
|
|
1044
|
+
}
|
|
1045
|
+
}
|
|
1046
|
+
.bg-background-muted\/40 {
|
|
1047
|
+
background-color: hsl(var(--background-muted));
|
|
1048
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1049
|
+
background-color: color-mix(in oklab, hsl(var(--background-muted)) 40%, transparent);
|
|
1050
|
+
}
|
|
1051
|
+
}
|
|
1052
|
+
.bg-background-muted\/50 {
|
|
1053
|
+
background-color: hsl(var(--background-muted));
|
|
1054
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1055
|
+
background-color: color-mix(in oklab, hsl(var(--background-muted)) 50%, transparent);
|
|
1056
|
+
}
|
|
1057
|
+
}
|
|
1058
|
+
.bg-background-overlay {
|
|
1059
|
+
background-color: hsl(var(--background-overlay-default));
|
|
1060
|
+
}
|
|
848
1061
|
.bg-background-surface-75 {
|
|
849
1062
|
background-color: hsl(var(--background-surface-75));
|
|
850
1063
|
}
|
|
@@ -854,12 +1067,30 @@
|
|
|
854
1067
|
.bg-background-surface-200 {
|
|
855
1068
|
background-color: hsl(var(--background-surface-200));
|
|
856
1069
|
}
|
|
1070
|
+
.bg-background\/40 {
|
|
1071
|
+
background-color: hsl(var(--background-default));
|
|
1072
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1073
|
+
background-color: color-mix(in oklab, hsl(var(--background-default)) 40%, transparent);
|
|
1074
|
+
}
|
|
1075
|
+
}
|
|
1076
|
+
.bg-background\/70 {
|
|
1077
|
+
background-color: hsl(var(--background-default));
|
|
1078
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1079
|
+
background-color: color-mix(in oklab, hsl(var(--background-default)) 70%, transparent);
|
|
1080
|
+
}
|
|
1081
|
+
}
|
|
857
1082
|
.bg-background\/80 {
|
|
858
1083
|
background-color: hsl(var(--background-default));
|
|
859
1084
|
@supports (color: color-mix(in lab, red, red)) {
|
|
860
1085
|
background-color: color-mix(in oklab, hsl(var(--background-default)) 80%, transparent);
|
|
861
1086
|
}
|
|
862
1087
|
}
|
|
1088
|
+
.bg-background\/95 {
|
|
1089
|
+
background-color: hsl(var(--background-default));
|
|
1090
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1091
|
+
background-color: color-mix(in oklab, hsl(var(--background-default)) 95%, transparent);
|
|
1092
|
+
}
|
|
1093
|
+
}
|
|
863
1094
|
.bg-border {
|
|
864
1095
|
background-color: hsl(var(--border-default));
|
|
865
1096
|
}
|
|
@@ -887,6 +1118,12 @@
|
|
|
887
1118
|
background-color: color-mix(in oklab, hsl(var(--brand-default)) 10%, transparent);
|
|
888
1119
|
}
|
|
889
1120
|
}
|
|
1121
|
+
.bg-brand\/15 {
|
|
1122
|
+
background-color: hsl(var(--brand-default));
|
|
1123
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1124
|
+
background-color: color-mix(in oklab, hsl(var(--brand-default)) 15%, transparent);
|
|
1125
|
+
}
|
|
1126
|
+
}
|
|
890
1127
|
.bg-card {
|
|
891
1128
|
background-color: hsl(var(--background-surface-100));
|
|
892
1129
|
}
|
|
@@ -920,6 +1157,15 @@
|
|
|
920
1157
|
.bg-foreground-lighter {
|
|
921
1158
|
background-color: hsl(var(--foreground-lighter));
|
|
922
1159
|
}
|
|
1160
|
+
.bg-foreground-muted {
|
|
1161
|
+
background-color: hsl(var(--foreground-muted));
|
|
1162
|
+
}
|
|
1163
|
+
.bg-foreground\/70 {
|
|
1164
|
+
background-color: hsl(var(--foreground-default));
|
|
1165
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1166
|
+
background-color: color-mix(in oklab, hsl(var(--foreground-default)) 70%, transparent);
|
|
1167
|
+
}
|
|
1168
|
+
}
|
|
923
1169
|
.bg-foreground\/\[\.026\] {
|
|
924
1170
|
background-color: hsl(var(--foreground-default));
|
|
925
1171
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -935,12 +1181,6 @@
|
|
|
935
1181
|
.bg-muted {
|
|
936
1182
|
background-color: hsl(var(--background-muted));
|
|
937
1183
|
}
|
|
938
|
-
.bg-muted\/10 {
|
|
939
|
-
background-color: hsl(var(--background-muted));
|
|
940
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
941
|
-
background-color: color-mix(in oklab, hsl(var(--background-muted)) 10%, transparent);
|
|
942
|
-
}
|
|
943
|
-
}
|
|
944
1184
|
.bg-muted\/30 {
|
|
945
1185
|
background-color: hsl(var(--background-muted));
|
|
946
1186
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1005,6 +1245,18 @@
|
|
|
1005
1245
|
--tw-gradient-position: to bottom right in oklab;
|
|
1006
1246
|
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
1007
1247
|
}
|
|
1248
|
+
.bg-gradient-to-t {
|
|
1249
|
+
--tw-gradient-position: to top in oklab;
|
|
1250
|
+
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
1251
|
+
}
|
|
1252
|
+
.from-\[hsl\(0_0\%_0\%\/0\.4\)\] {
|
|
1253
|
+
--tw-gradient-from: hsl(0 0% 0%/0.4);
|
|
1254
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
1255
|
+
}
|
|
1256
|
+
.from-brand {
|
|
1257
|
+
--tw-gradient-from: hsl(var(--brand-default));
|
|
1258
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
1259
|
+
}
|
|
1008
1260
|
.from-brand-400 {
|
|
1009
1261
|
--tw-gradient-from: hsl(var(--brand-400));
|
|
1010
1262
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
@@ -1014,10 +1266,34 @@
|
|
|
1014
1266
|
--tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
|
|
1015
1267
|
--tw-gradient-stops: var(--tw-gradient-via-stops);
|
|
1016
1268
|
}
|
|
1269
|
+
.via-secondary {
|
|
1270
|
+
--tw-gradient-via: hsl(var(--secondary-default));
|
|
1271
|
+
--tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
|
|
1272
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops);
|
|
1273
|
+
}
|
|
1274
|
+
.via-transparent {
|
|
1275
|
+
--tw-gradient-via: transparent;
|
|
1276
|
+
--tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
|
|
1277
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops);
|
|
1278
|
+
}
|
|
1279
|
+
.to-brand {
|
|
1280
|
+
--tw-gradient-to: hsl(var(--brand-default));
|
|
1281
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
1282
|
+
}
|
|
1017
1283
|
.to-brand-400 {
|
|
1018
1284
|
--tw-gradient-to: hsl(var(--brand-400));
|
|
1019
1285
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
1020
1286
|
}
|
|
1287
|
+
.to-transparent {
|
|
1288
|
+
--tw-gradient-to: transparent;
|
|
1289
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
1290
|
+
}
|
|
1291
|
+
.fill-\[hsl\(0_0\%_100\%\)\] {
|
|
1292
|
+
fill: hsl(0 0% 100%);
|
|
1293
|
+
}
|
|
1294
|
+
.fill-\[hsl\(var\(--brand\)\/0\.15\)\] {
|
|
1295
|
+
fill: hsl(var(--brand)/0.15);
|
|
1296
|
+
}
|
|
1021
1297
|
.fill-brand {
|
|
1022
1298
|
fill: hsl(var(--brand-default));
|
|
1023
1299
|
}
|
|
@@ -1063,6 +1339,9 @@
|
|
|
1063
1339
|
.align-middle {
|
|
1064
1340
|
vertical-align: middle;
|
|
1065
1341
|
}
|
|
1342
|
+
.align-top {
|
|
1343
|
+
vertical-align: top;
|
|
1344
|
+
}
|
|
1066
1345
|
.text-2xl {
|
|
1067
1346
|
font-size: 1.5rem;
|
|
1068
1347
|
line-height: var(--tw-leading, 2rem);
|
|
@@ -1102,6 +1381,21 @@
|
|
|
1102
1381
|
.text-\[0\.6em\] {
|
|
1103
1382
|
font-size: 0.6em;
|
|
1104
1383
|
}
|
|
1384
|
+
.text-\[0\.6875rem\] {
|
|
1385
|
+
font-size: 0.6875rem;
|
|
1386
|
+
}
|
|
1387
|
+
.text-\[0\.9375rem\] {
|
|
1388
|
+
font-size: 0.9375rem;
|
|
1389
|
+
}
|
|
1390
|
+
.text-\[0px\] {
|
|
1391
|
+
font-size: 0px;
|
|
1392
|
+
}
|
|
1393
|
+
.text-\[10px\] {
|
|
1394
|
+
font-size: 10px;
|
|
1395
|
+
}
|
|
1396
|
+
.text-\[11px\] {
|
|
1397
|
+
font-size: 11px;
|
|
1398
|
+
}
|
|
1105
1399
|
.leading-none {
|
|
1106
1400
|
--tw-leading: 1;
|
|
1107
1401
|
line-height: 1;
|
|
@@ -1136,12 +1430,27 @@
|
|
|
1136
1430
|
.break-words {
|
|
1137
1431
|
overflow-wrap: break-word;
|
|
1138
1432
|
}
|
|
1433
|
+
.break-all {
|
|
1434
|
+
word-break: break-all;
|
|
1435
|
+
}
|
|
1139
1436
|
.whitespace-nowrap {
|
|
1140
1437
|
white-space: nowrap;
|
|
1141
1438
|
}
|
|
1439
|
+
.whitespace-pre-wrap {
|
|
1440
|
+
white-space: pre-wrap;
|
|
1441
|
+
}
|
|
1142
1442
|
.text {
|
|
1143
1443
|
color: hsl(var(--foreground-default));
|
|
1144
1444
|
}
|
|
1445
|
+
.text-\[hsl\(0_0\%_100\%\)\] {
|
|
1446
|
+
color: hsl(0 0% 100%);
|
|
1447
|
+
}
|
|
1448
|
+
.text-\[hsl\(var\(--brand-default\)\)\] {
|
|
1449
|
+
color: hsl(var(--brand-default));
|
|
1450
|
+
}
|
|
1451
|
+
.text-\[hsl\(var\(--destructive-default\)\)\] {
|
|
1452
|
+
color: hsl(var(--destructive-default));
|
|
1453
|
+
}
|
|
1145
1454
|
.text-\[hsl\(var\(--secondary-default\)\)\] {
|
|
1146
1455
|
color: hsl(var(--secondary-default));
|
|
1147
1456
|
}
|
|
@@ -1157,6 +1466,9 @@
|
|
|
1157
1466
|
.text-\[hsl\(var\(--sentiment-positive\)\)\] {
|
|
1158
1467
|
color: hsl(var(--sentiment-positive));
|
|
1159
1468
|
}
|
|
1469
|
+
.text-\[hsl\(var\(--warning-default\)\)\] {
|
|
1470
|
+
color: hsl(var(--warning-default));
|
|
1471
|
+
}
|
|
1160
1472
|
.text-accent-foreground {
|
|
1161
1473
|
color: hsl(var(--foreground-default));
|
|
1162
1474
|
}
|
|
@@ -1178,9 +1490,6 @@
|
|
|
1178
1490
|
.text-brand-600 {
|
|
1179
1491
|
color: hsl(var(--brand-600));
|
|
1180
1492
|
}
|
|
1181
|
-
.text-brand-link {
|
|
1182
|
-
color: hsl(var(--brand-link));
|
|
1183
|
-
}
|
|
1184
1493
|
.text-card-foreground {
|
|
1185
1494
|
color: hsl(var(--foreground-default));
|
|
1186
1495
|
}
|
|
@@ -1214,6 +1523,12 @@
|
|
|
1214
1523
|
.text-foreground-lighter {
|
|
1215
1524
|
color: hsl(var(--foreground-lighter));
|
|
1216
1525
|
}
|
|
1526
|
+
.text-foreground-lighter\/60 {
|
|
1527
|
+
color: hsl(var(--foreground-lighter));
|
|
1528
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1529
|
+
color: color-mix(in oklab, hsl(var(--foreground-lighter)) 60%, transparent);
|
|
1530
|
+
}
|
|
1531
|
+
}
|
|
1217
1532
|
.text-foreground-lighter\/75 {
|
|
1218
1533
|
color: hsl(var(--foreground-lighter));
|
|
1219
1534
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1223,6 +1538,9 @@
|
|
|
1223
1538
|
.text-foreground-muted {
|
|
1224
1539
|
color: hsl(var(--foreground-muted));
|
|
1225
1540
|
}
|
|
1541
|
+
.text-inherit {
|
|
1542
|
+
color: inherit;
|
|
1543
|
+
}
|
|
1226
1544
|
.text-light {
|
|
1227
1545
|
color: hsl(var(--foreground-light));
|
|
1228
1546
|
}
|
|
@@ -1238,12 +1556,6 @@
|
|
|
1238
1556
|
.text-muted-foreground {
|
|
1239
1557
|
color: hsl(var(--foreground-muted));
|
|
1240
1558
|
}
|
|
1241
|
-
.text-muted-foreground\/50 {
|
|
1242
|
-
color: hsl(var(--foreground-muted));
|
|
1243
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1244
|
-
color: color-mix(in oklab, hsl(var(--foreground-muted)) 50%, transparent);
|
|
1245
|
-
}
|
|
1246
|
-
}
|
|
1247
1559
|
.text-popover-foreground {
|
|
1248
1560
|
color: hsl(var(--foreground-default));
|
|
1249
1561
|
}
|
|
@@ -1274,6 +1586,9 @@
|
|
|
1274
1586
|
.text-warning-600 {
|
|
1275
1587
|
color: hsl(var(--warning-600));
|
|
1276
1588
|
}
|
|
1589
|
+
.lowercase {
|
|
1590
|
+
text-transform: lowercase;
|
|
1591
|
+
}
|
|
1277
1592
|
.uppercase {
|
|
1278
1593
|
text-transform: uppercase;
|
|
1279
1594
|
}
|
|
@@ -1299,9 +1614,18 @@
|
|
|
1299
1614
|
.opacity-50 {
|
|
1300
1615
|
opacity: 50%;
|
|
1301
1616
|
}
|
|
1617
|
+
.opacity-60 {
|
|
1618
|
+
opacity: 60%;
|
|
1619
|
+
}
|
|
1302
1620
|
.opacity-70 {
|
|
1303
1621
|
opacity: 70%;
|
|
1304
1622
|
}
|
|
1623
|
+
.opacity-90 {
|
|
1624
|
+
opacity: 90%;
|
|
1625
|
+
}
|
|
1626
|
+
.opacity-100 {
|
|
1627
|
+
opacity: 100%;
|
|
1628
|
+
}
|
|
1305
1629
|
.shadow {
|
|
1306
1630
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.07)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.07));
|
|
1307
1631
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1342,6 +1666,10 @@
|
|
|
1342
1666
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1343
1667
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1344
1668
|
}
|
|
1669
|
+
.ring-1 {
|
|
1670
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1671
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1672
|
+
}
|
|
1345
1673
|
.ring-2 {
|
|
1346
1674
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1347
1675
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1362,6 +1690,9 @@
|
|
|
1362
1690
|
.ring-brand-200 {
|
|
1363
1691
|
--tw-ring-color: hsl(var(--brand-200));
|
|
1364
1692
|
}
|
|
1693
|
+
.ring-current {
|
|
1694
|
+
--tw-ring-color: currentcolor;
|
|
1695
|
+
}
|
|
1365
1696
|
.ring-primary {
|
|
1366
1697
|
--tw-ring-color: hsl(var(--brand-default));
|
|
1367
1698
|
}
|
|
@@ -1399,6 +1730,10 @@
|
|
|
1399
1730
|
outline-style: var(--tw-outline-style);
|
|
1400
1731
|
outline-width: 1px;
|
|
1401
1732
|
}
|
|
1733
|
+
.invert {
|
|
1734
|
+
--tw-invert: invert(100%);
|
|
1735
|
+
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,);
|
|
1736
|
+
}
|
|
1402
1737
|
.filter {
|
|
1403
1738
|
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,);
|
|
1404
1739
|
}
|
|
@@ -1412,8 +1747,8 @@
|
|
|
1412
1747
|
transition-timing-function: var(--tw-ease, ease);
|
|
1413
1748
|
transition-duration: var(--tw-duration, 0s);
|
|
1414
1749
|
}
|
|
1415
|
-
.transition-\[
|
|
1416
|
-
transition-property:
|
|
1750
|
+
.transition-\[inset-inline-start\,inset-inline-end\,width\] {
|
|
1751
|
+
transition-property: inset-inline-start,inset-inline-end,width;
|
|
1417
1752
|
transition-timing-function: var(--tw-ease, ease);
|
|
1418
1753
|
transition-duration: var(--tw-duration, 0s);
|
|
1419
1754
|
}
|
|
@@ -1437,6 +1772,11 @@
|
|
|
1437
1772
|
transition-timing-function: var(--tw-ease, ease);
|
|
1438
1773
|
transition-duration: var(--tw-duration, 0s);
|
|
1439
1774
|
}
|
|
1775
|
+
.transition-\[transform\] {
|
|
1776
|
+
transition-property: transform;
|
|
1777
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
1778
|
+
transition-duration: var(--tw-duration, 0s);
|
|
1779
|
+
}
|
|
1440
1780
|
.transition-\[width\,height\,padding\] {
|
|
1441
1781
|
transition-property: width,height,padding;
|
|
1442
1782
|
transition-timing-function: var(--tw-ease, ease);
|
|
@@ -1462,6 +1802,11 @@
|
|
|
1462
1802
|
transition-timing-function: var(--tw-ease, ease);
|
|
1463
1803
|
transition-duration: var(--tw-duration, 0s);
|
|
1464
1804
|
}
|
|
1805
|
+
.transition-shadow {
|
|
1806
|
+
transition-property: box-shadow;
|
|
1807
|
+
transition-timing-function: var(--tw-ease, ease);
|
|
1808
|
+
transition-duration: var(--tw-duration, 0s);
|
|
1809
|
+
}
|
|
1465
1810
|
.transition-transform {
|
|
1466
1811
|
transition-property: transform, translate, scale, rotate;
|
|
1467
1812
|
transition-timing-function: var(--tw-ease, ease);
|
|
@@ -1557,25 +1902,43 @@
|
|
|
1557
1902
|
.fade-out {
|
|
1558
1903
|
--tw-exit-opacity: 0;
|
|
1559
1904
|
}
|
|
1905
|
+
.paused {
|
|
1906
|
+
animation-play-state: paused;
|
|
1907
|
+
}
|
|
1908
|
+
.running {
|
|
1909
|
+
animation-play-state: running;
|
|
1910
|
+
}
|
|
1911
|
+
.group-focus-within\:flex {
|
|
1912
|
+
&:is(:where(.group):focus-within *) {
|
|
1913
|
+
display: flex;
|
|
1914
|
+
}
|
|
1915
|
+
}
|
|
1916
|
+
.group-focus-within\:hidden {
|
|
1917
|
+
&:is(:where(.group):focus-within *) {
|
|
1918
|
+
display: none;
|
|
1919
|
+
}
|
|
1920
|
+
}
|
|
1921
|
+
.group-focus-within\:opacity-100 {
|
|
1922
|
+
&:is(:where(.group):focus-within *) {
|
|
1923
|
+
opacity: 100%;
|
|
1924
|
+
}
|
|
1925
|
+
}
|
|
1560
1926
|
.group-focus-within\/menu-item\:opacity-100 {
|
|
1561
1927
|
&:is(:where(.group\/menu-item):focus-within *) {
|
|
1562
1928
|
opacity: 100%;
|
|
1563
1929
|
}
|
|
1564
1930
|
}
|
|
1565
|
-
.group-hover\:
|
|
1931
|
+
.group-hover\:flex {
|
|
1566
1932
|
&:is(:where(.group):hover *) {
|
|
1567
1933
|
@media (hover: hover) {
|
|
1568
|
-
|
|
1569
|
-
--tw-scale-y: 110%;
|
|
1570
|
-
--tw-scale-z: 110%;
|
|
1571
|
-
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
1934
|
+
display: flex;
|
|
1572
1935
|
}
|
|
1573
1936
|
}
|
|
1574
1937
|
}
|
|
1575
|
-
.group-hover\:
|
|
1938
|
+
.group-hover\:hidden {
|
|
1576
1939
|
&:is(:where(.group):hover *) {
|
|
1577
1940
|
@media (hover: hover) {
|
|
1578
|
-
|
|
1941
|
+
display: none;
|
|
1579
1942
|
}
|
|
1580
1943
|
}
|
|
1581
1944
|
}
|
|
@@ -1593,6 +1956,11 @@
|
|
|
1593
1956
|
}
|
|
1594
1957
|
}
|
|
1595
1958
|
}
|
|
1959
|
+
.group-focus-visible\:opacity-100 {
|
|
1960
|
+
&:is(:where(.group):focus-visible *) {
|
|
1961
|
+
opacity: 100%;
|
|
1962
|
+
}
|
|
1963
|
+
}
|
|
1596
1964
|
.group-has-\[\[data-orientation\=horizontal\]\]\/field\:text-balance {
|
|
1597
1965
|
&:is(:where(.group\/field):has(*:is([data-orientation=horizontal])) *) {
|
|
1598
1966
|
text-wrap: balance;
|
|
@@ -1628,14 +1996,14 @@
|
|
|
1628
1996
|
opacity: 0%;
|
|
1629
1997
|
}
|
|
1630
1998
|
}
|
|
1631
|
-
.group-data-\[collapsible\=offcanvas\]\:
|
|
1999
|
+
.group-data-\[collapsible\=offcanvas\]\:start-\[calc\(var\(--sidebar-width\)\*-1\)\] {
|
|
1632
2000
|
&:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
1633
|
-
|
|
2001
|
+
inset-inline-start: calc(var(--sidebar-width) * -1);
|
|
1634
2002
|
}
|
|
1635
2003
|
}
|
|
1636
|
-
.group-data-\[collapsible\=offcanvas\]\:
|
|
2004
|
+
.group-data-\[collapsible\=offcanvas\]\:end-\[calc\(var\(--sidebar-width\)\*-1\)\] {
|
|
1637
2005
|
&:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
1638
|
-
|
|
2006
|
+
inset-inline-end: calc(var(--sidebar-width) * -1);
|
|
1639
2007
|
}
|
|
1640
2008
|
}
|
|
1641
2009
|
.group-data-\[disabled\=true\]\:pointer-events-none {
|
|
@@ -1658,10 +2026,10 @@
|
|
|
1658
2026
|
opacity: 50%;
|
|
1659
2027
|
}
|
|
1660
2028
|
}
|
|
1661
|
-
.group-data-\[side\=left\]\:border-
|
|
2029
|
+
.group-data-\[side\=left\]\:border-e {
|
|
1662
2030
|
&:is(:where(.group)[data-side="left"] *) {
|
|
1663
|
-
border-
|
|
1664
|
-
border-
|
|
2031
|
+
border-inline-end-style: var(--tw-border-style);
|
|
2032
|
+
border-inline-end-width: var(--borderwidth-xs);
|
|
1665
2033
|
}
|
|
1666
2034
|
}
|
|
1667
2035
|
.group-data-\[side\=right\]\:rotate-180 {
|
|
@@ -1669,10 +2037,15 @@
|
|
|
1669
2037
|
rotate: 180deg;
|
|
1670
2038
|
}
|
|
1671
2039
|
}
|
|
1672
|
-
.group-data-\[side\=right\]\:border-
|
|
2040
|
+
.group-data-\[side\=right\]\:border-s {
|
|
1673
2041
|
&:is(:where(.group)[data-side="right"] *) {
|
|
1674
|
-
border-
|
|
1675
|
-
border-
|
|
2042
|
+
border-inline-start-style: var(--tw-border-style);
|
|
2043
|
+
border-inline-start-width: var(--borderwidth-xs);
|
|
2044
|
+
}
|
|
2045
|
+
}
|
|
2046
|
+
.group-data-\[state\=closed\]\:-rotate-90 {
|
|
2047
|
+
&:is(:where(.group)[data-state="closed"] *) {
|
|
2048
|
+
rotate: calc(90deg * -1);
|
|
1676
2049
|
}
|
|
1677
2050
|
}
|
|
1678
2051
|
.group-data-\[state\=open\]\:rotate-180 {
|
|
@@ -1969,12 +2342,6 @@
|
|
|
1969
2342
|
inset-inline-start: calc(1/2 * 100%);
|
|
1970
2343
|
}
|
|
1971
2344
|
}
|
|
1972
|
-
.after\:left-1\/2 {
|
|
1973
|
-
&::after {
|
|
1974
|
-
content: var(--tw-content);
|
|
1975
|
-
left: calc(1 / 2 * 100%);
|
|
1976
|
-
}
|
|
1977
|
-
}
|
|
1978
2345
|
.after\:w-\[2px\] {
|
|
1979
2346
|
&::after {
|
|
1980
2347
|
content: var(--tw-content);
|
|
@@ -1988,11 +2355,11 @@
|
|
|
1988
2355
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1989
2356
|
}
|
|
1990
2357
|
}
|
|
1991
|
-
.group-data-\[collapsible\=offcanvas\]\:after\:
|
|
2358
|
+
.group-data-\[collapsible\=offcanvas\]\:after\:start-full {
|
|
1992
2359
|
&:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
1993
2360
|
&::after {
|
|
1994
2361
|
content: var(--tw-content);
|
|
1995
|
-
|
|
2362
|
+
inset-inline-start: 100%;
|
|
1996
2363
|
}
|
|
1997
2364
|
}
|
|
1998
2365
|
}
|
|
@@ -2074,6 +2441,23 @@
|
|
|
2074
2441
|
outline-style: none;
|
|
2075
2442
|
}
|
|
2076
2443
|
}
|
|
2444
|
+
.hover\:scale-105 {
|
|
2445
|
+
&:hover {
|
|
2446
|
+
@media (hover: hover) {
|
|
2447
|
+
--tw-scale-x: 105%;
|
|
2448
|
+
--tw-scale-y: 105%;
|
|
2449
|
+
--tw-scale-z: 105%;
|
|
2450
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
2451
|
+
}
|
|
2452
|
+
}
|
|
2453
|
+
}
|
|
2454
|
+
.hover\:border-border-stronger {
|
|
2455
|
+
&:hover {
|
|
2456
|
+
@media (hover: hover) {
|
|
2457
|
+
border-color: hsl(var(--border-stronger));
|
|
2458
|
+
}
|
|
2459
|
+
}
|
|
2460
|
+
}
|
|
2077
2461
|
.hover\:border-brand-600 {
|
|
2078
2462
|
&:hover {
|
|
2079
2463
|
@media (hover: hover) {
|
|
@@ -2112,6 +2496,20 @@
|
|
|
2112
2496
|
}
|
|
2113
2497
|
}
|
|
2114
2498
|
}
|
|
2499
|
+
.hover\:border-strong {
|
|
2500
|
+
&:hover {
|
|
2501
|
+
@media (hover: hover) {
|
|
2502
|
+
border-color: hsl(var(--border-strong));
|
|
2503
|
+
}
|
|
2504
|
+
}
|
|
2505
|
+
}
|
|
2506
|
+
.hover\:border-strong {
|
|
2507
|
+
&:hover {
|
|
2508
|
+
@media (hover: hover) {
|
|
2509
|
+
border-color: hsl(var(--border-strong));
|
|
2510
|
+
}
|
|
2511
|
+
}
|
|
2512
|
+
}
|
|
2115
2513
|
.hover\:border-stronger {
|
|
2116
2514
|
&:hover {
|
|
2117
2515
|
@media (hover: hover) {
|
|
@@ -2140,13 +2538,6 @@
|
|
|
2140
2538
|
}
|
|
2141
2539
|
}
|
|
2142
2540
|
}
|
|
2143
|
-
.hover\:bg-background {
|
|
2144
|
-
&:hover {
|
|
2145
|
-
@media (hover: hover) {
|
|
2146
|
-
background-color: hsl(var(--background-default));
|
|
2147
|
-
}
|
|
2148
|
-
}
|
|
2149
|
-
}
|
|
2150
2541
|
.hover\:bg-background-surface-200 {
|
|
2151
2542
|
&:hover {
|
|
2152
2543
|
@media (hover: hover) {
|
|
@@ -2220,6 +2611,23 @@
|
|
|
2220
2611
|
}
|
|
2221
2612
|
}
|
|
2222
2613
|
}
|
|
2614
|
+
.hover\:bg-muted\/30 {
|
|
2615
|
+
&:hover {
|
|
2616
|
+
@media (hover: hover) {
|
|
2617
|
+
background-color: hsl(var(--background-muted));
|
|
2618
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2619
|
+
background-color: color-mix(in oklab, hsl(var(--background-muted)) 30%, transparent);
|
|
2620
|
+
}
|
|
2621
|
+
}
|
|
2622
|
+
}
|
|
2623
|
+
}
|
|
2624
|
+
.hover\:bg-overlay-hover {
|
|
2625
|
+
&:hover {
|
|
2626
|
+
@media (hover: hover) {
|
|
2627
|
+
background-color: hsl(var(--background-overlay-hover));
|
|
2628
|
+
}
|
|
2629
|
+
}
|
|
2630
|
+
}
|
|
2223
2631
|
.hover\:bg-primary {
|
|
2224
2632
|
&:hover {
|
|
2225
2633
|
@media (hover: hover) {
|
|
@@ -2361,11 +2769,27 @@
|
|
|
2361
2769
|
}
|
|
2362
2770
|
}
|
|
2363
2771
|
}
|
|
2772
|
+
.focus\:border-brand\/50 {
|
|
2773
|
+
&:focus {
|
|
2774
|
+
border-color: hsl(var(--brand-default));
|
|
2775
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2776
|
+
border-color: color-mix(in oklab, hsl(var(--brand-default)) 50%, transparent);
|
|
2777
|
+
}
|
|
2778
|
+
}
|
|
2779
|
+
}
|
|
2364
2780
|
.focus\:bg-accent {
|
|
2365
2781
|
&:focus {
|
|
2366
2782
|
background-color: hsl(var(--background-surface-200));
|
|
2367
2783
|
}
|
|
2368
2784
|
}
|
|
2785
|
+
.focus\:bg-destructive\/10 {
|
|
2786
|
+
&:focus {
|
|
2787
|
+
background-color: hsl(var(--destructive-default));
|
|
2788
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2789
|
+
background-color: color-mix(in oklab, hsl(var(--destructive-default)) 10%, transparent);
|
|
2790
|
+
}
|
|
2791
|
+
}
|
|
2792
|
+
}
|
|
2369
2793
|
.focus\:bg-overlay-hover {
|
|
2370
2794
|
&:focus {
|
|
2371
2795
|
background-color: hsl(var(--background-overlay-hover));
|
|
@@ -2381,6 +2805,11 @@
|
|
|
2381
2805
|
color: hsl(var(--foreground-default));
|
|
2382
2806
|
}
|
|
2383
2807
|
}
|
|
2808
|
+
.focus\:text-destructive {
|
|
2809
|
+
&:focus {
|
|
2810
|
+
color: hsl(var(--destructive-default));
|
|
2811
|
+
}
|
|
2812
|
+
}
|
|
2384
2813
|
.focus\:text-foreground {
|
|
2385
2814
|
&:focus {
|
|
2386
2815
|
color: hsl(var(--foreground-default));
|
|
@@ -2397,6 +2826,14 @@
|
|
|
2397
2826
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2398
2827
|
}
|
|
2399
2828
|
}
|
|
2829
|
+
.focus\:ring-brand\/20 {
|
|
2830
|
+
&:focus {
|
|
2831
|
+
--tw-ring-color: hsl(var(--brand-default));
|
|
2832
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2833
|
+
--tw-ring-color: color-mix(in oklab, hsl(var(--brand-default)) 20%, transparent);
|
|
2834
|
+
}
|
|
2835
|
+
}
|
|
2836
|
+
}
|
|
2400
2837
|
.focus\:ring-ring {
|
|
2401
2838
|
&:focus {
|
|
2402
2839
|
--tw-ring-color: hsl(var(--border-strong));
|
|
@@ -2531,6 +2968,11 @@
|
|
|
2531
2968
|
outline-style: none;
|
|
2532
2969
|
}
|
|
2533
2970
|
}
|
|
2971
|
+
.focus-visible\:ring-inset {
|
|
2972
|
+
&:focus-visible {
|
|
2973
|
+
--tw-ring-inset: inset;
|
|
2974
|
+
}
|
|
2975
|
+
}
|
|
2534
2976
|
.active\:scale-\[0\.97\] {
|
|
2535
2977
|
&:active {
|
|
2536
2978
|
scale: 0.97;
|
|
@@ -2801,6 +3243,11 @@
|
|
|
2801
3243
|
}
|
|
2802
3244
|
}
|
|
2803
3245
|
}
|
|
3246
|
+
.data-\[active-within\=true\]\:text-foreground {
|
|
3247
|
+
&[data-active-within="true"] {
|
|
3248
|
+
color: hsl(var(--foreground-default));
|
|
3249
|
+
}
|
|
3250
|
+
}
|
|
2804
3251
|
.data-\[active\=true\]\:z-10 {
|
|
2805
3252
|
&[data-active="true"] {
|
|
2806
3253
|
z-index: 10;
|
|
@@ -2819,6 +3266,16 @@
|
|
|
2819
3266
|
}
|
|
2820
3267
|
}
|
|
2821
3268
|
}
|
|
3269
|
+
.data-\[active\=true\]\:bg-selection {
|
|
3270
|
+
&[data-active="true"] {
|
|
3271
|
+
background-color: hsl(var(--background-selection));
|
|
3272
|
+
}
|
|
3273
|
+
}
|
|
3274
|
+
.data-\[active\=true\]\:bg-selection {
|
|
3275
|
+
&[data-active="true"] {
|
|
3276
|
+
background-color: hsl(var(--background-selection));
|
|
3277
|
+
}
|
|
3278
|
+
}
|
|
2822
3279
|
.data-\[active\=true\]\:bg-sidebar-accent {
|
|
2823
3280
|
&[data-active="true"] {
|
|
2824
3281
|
background-color: hsl(var(--background-selection));
|
|
@@ -2835,6 +3292,11 @@
|
|
|
2835
3292
|
color: hsl(var(--foreground-default));
|
|
2836
3293
|
}
|
|
2837
3294
|
}
|
|
3295
|
+
.data-\[active\=true\]\:text-foreground {
|
|
3296
|
+
&[data-active="true"] {
|
|
3297
|
+
color: hsl(var(--foreground-default));
|
|
3298
|
+
}
|
|
3299
|
+
}
|
|
2838
3300
|
.data-\[active\=true\]\:text-sidebar-accent-foreground {
|
|
2839
3301
|
&[data-active="true"] {
|
|
2840
3302
|
color: hsl(var(--foreground-default));
|
|
@@ -3154,6 +3616,11 @@
|
|
|
3154
3616
|
animation: accordion-up 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
3155
3617
|
}
|
|
3156
3618
|
}
|
|
3619
|
+
.data-\[state\=closed\]\:animate-collapsible-up {
|
|
3620
|
+
&[data-state="closed"] {
|
|
3621
|
+
animation: collapsible-up 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
3622
|
+
}
|
|
3623
|
+
}
|
|
3157
3624
|
.data-\[state\=closed\]\:duration-300 {
|
|
3158
3625
|
&[data-state="closed"] {
|
|
3159
3626
|
--tw-duration: 300ms;
|
|
@@ -3301,6 +3768,11 @@
|
|
|
3301
3768
|
animation: accordion-down 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
3302
3769
|
}
|
|
3303
3770
|
}
|
|
3771
|
+
.data-\[state\=open\]\:animate-collapsible-down {
|
|
3772
|
+
&[data-state="open"] {
|
|
3773
|
+
animation: collapsible-down 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
3774
|
+
}
|
|
3775
|
+
}
|
|
3304
3776
|
.data-\[state\=open\]\:border-button-hover {
|
|
3305
3777
|
&[data-state="open"] {
|
|
3306
3778
|
border-color: hsl(var(--border-button-hover));
|
|
@@ -3642,11 +4114,26 @@
|
|
|
3642
4114
|
border-bottom-width: var(--borderwidth-xs);
|
|
3643
4115
|
}
|
|
3644
4116
|
}
|
|
4117
|
+
.motion-safe\:animate-job-indeterminate {
|
|
4118
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
4119
|
+
animation: job-indeterminate 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
|
|
4120
|
+
}
|
|
4121
|
+
}
|
|
4122
|
+
.ltr\:hidden {
|
|
4123
|
+
&:where(:dir(ltr), [dir="ltr"], [dir="ltr"] *) {
|
|
4124
|
+
display: none;
|
|
4125
|
+
}
|
|
4126
|
+
}
|
|
3645
4127
|
.ltr\:rotate-180 {
|
|
3646
4128
|
&:where(:dir(ltr), [dir="ltr"], [dir="ltr"] *) {
|
|
3647
4129
|
rotate: 180deg;
|
|
3648
4130
|
}
|
|
3649
4131
|
}
|
|
4132
|
+
.rtl\:hidden {
|
|
4133
|
+
&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
|
|
4134
|
+
display: none;
|
|
4135
|
+
}
|
|
4136
|
+
}
|
|
3650
4137
|
.rtl\:origin-right {
|
|
3651
4138
|
&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
|
|
3652
4139
|
transform-origin: 100%;
|
|
@@ -3670,6 +4157,18 @@
|
|
|
3670
4157
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
3671
4158
|
}
|
|
3672
4159
|
}
|
|
4160
|
+
.rtl\:translate-x-px {
|
|
4161
|
+
&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
|
|
4162
|
+
--tw-translate-x: 1px;
|
|
4163
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
4164
|
+
}
|
|
4165
|
+
}
|
|
4166
|
+
.rtl\:-scale-x-100 {
|
|
4167
|
+
&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
|
|
4168
|
+
--tw-scale-x: calc(100% * -1);
|
|
4169
|
+
scale: var(--tw-scale-x) var(--tw-scale-y);
|
|
4170
|
+
}
|
|
4171
|
+
}
|
|
3673
4172
|
.rtl\:rotate-180 {
|
|
3674
4173
|
&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
|
|
3675
4174
|
rotate: 180deg;
|
|
@@ -3696,6 +4195,20 @@
|
|
|
3696
4195
|
}
|
|
3697
4196
|
}
|
|
3698
4197
|
}
|
|
4198
|
+
.rtl\:in-data-\[side\=left\]\:cursor-e-resize {
|
|
4199
|
+
&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
|
|
4200
|
+
:where(*[data-side="left"]) & {
|
|
4201
|
+
cursor: e-resize;
|
|
4202
|
+
}
|
|
4203
|
+
}
|
|
4204
|
+
}
|
|
4205
|
+
.rtl\:in-data-\[side\=right\]\:cursor-w-resize {
|
|
4206
|
+
&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
|
|
4207
|
+
:where(*[data-side="right"]) & {
|
|
4208
|
+
cursor: w-resize;
|
|
4209
|
+
}
|
|
4210
|
+
}
|
|
4211
|
+
}
|
|
3699
4212
|
.data-\[motion\=from-end\]\:rtl\:slide-in-from-left-52 {
|
|
3700
4213
|
&[data-motion="from-end"] {
|
|
3701
4214
|
&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
|
|
@@ -3753,12 +4266,12 @@
|
|
|
3753
4266
|
}
|
|
3754
4267
|
}
|
|
3755
4268
|
.dark\:border-brand-600 {
|
|
3756
|
-
&:is([data-theme
|
|
4269
|
+
&:is([data-theme="dark"] *) {
|
|
3757
4270
|
border-color: hsl(var(--brand-600));
|
|
3758
4271
|
}
|
|
3759
4272
|
}
|
|
3760
4273
|
.dark\:border-brand\/30 {
|
|
3761
|
-
&:is([data-theme
|
|
4274
|
+
&:is([data-theme="dark"] *) {
|
|
3762
4275
|
border-color: hsl(var(--brand-default));
|
|
3763
4276
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3764
4277
|
border-color: color-mix(in oklab, hsl(var(--brand-default)) 30%, transparent);
|
|
@@ -3766,17 +4279,17 @@
|
|
|
3766
4279
|
}
|
|
3767
4280
|
}
|
|
3768
4281
|
.dark\:bg-brand-400 {
|
|
3769
|
-
&:is([data-theme
|
|
4282
|
+
&:is([data-theme="dark"] *) {
|
|
3770
4283
|
background-color: hsl(var(--brand-400));
|
|
3771
4284
|
}
|
|
3772
4285
|
}
|
|
3773
4286
|
.dark\:bg-brand-500 {
|
|
3774
|
-
&:is([data-theme
|
|
4287
|
+
&:is([data-theme="dark"] *) {
|
|
3775
4288
|
background-color: hsl(var(--brand-500));
|
|
3776
4289
|
}
|
|
3777
4290
|
}
|
|
3778
4291
|
.dark\:bg-brand\/10 {
|
|
3779
|
-
&:is([data-theme
|
|
4292
|
+
&:is([data-theme="dark"] *) {
|
|
3780
4293
|
background-color: hsl(var(--brand-default));
|
|
3781
4294
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3782
4295
|
background-color: color-mix(in oklab, hsl(var(--brand-default)) 10%, transparent);
|
|
@@ -3784,12 +4297,12 @@
|
|
|
3784
4297
|
}
|
|
3785
4298
|
}
|
|
3786
4299
|
.dark\:bg-destructive-400 {
|
|
3787
|
-
&:is([data-theme
|
|
4300
|
+
&:is([data-theme="dark"] *) {
|
|
3788
4301
|
background-color: hsl(var(--destructive-400));
|
|
3789
4302
|
}
|
|
3790
4303
|
}
|
|
3791
4304
|
.dark\:bg-destructive\/10 {
|
|
3792
|
-
&:is([data-theme
|
|
4305
|
+
&:is([data-theme="dark"] *) {
|
|
3793
4306
|
background-color: hsl(var(--destructive-default));
|
|
3794
4307
|
@supports (color: color-mix(in lab, red, red)) {
|
|
3795
4308
|
background-color: color-mix(in oklab, hsl(var(--destructive-default)) 10%, transparent);
|
|
@@ -3797,40 +4310,37 @@
|
|
|
3797
4310
|
}
|
|
3798
4311
|
}
|
|
3799
4312
|
.dark\:bg-muted {
|
|
3800
|
-
&:is([data-theme
|
|
4313
|
+
&:is([data-theme="dark"] *) {
|
|
3801
4314
|
background-color: hsl(var(--background-muted));
|
|
3802
4315
|
}
|
|
3803
4316
|
}
|
|
3804
4317
|
.dark\:bg-muted {
|
|
3805
|
-
&:is([data-theme
|
|
3806
|
-
background-color: hsl(var(--background-muted));
|
|
3807
|
-
}
|
|
3808
|
-
}
|
|
3809
|
-
.dark\:bg-muted\/5 {
|
|
3810
|
-
&:is([data-theme*="dark"] *) {
|
|
4318
|
+
&:is([data-theme="dark"] *) {
|
|
3811
4319
|
background-color: hsl(var(--background-muted));
|
|
3812
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
3813
|
-
background-color: color-mix(in oklab, hsl(var(--background-muted)) 5%, transparent);
|
|
3814
|
-
}
|
|
3815
4320
|
}
|
|
3816
4321
|
}
|
|
3817
4322
|
.dark\:bg-transparent {
|
|
3818
|
-
&:is([data-theme
|
|
4323
|
+
&:is([data-theme="dark"] *) {
|
|
3819
4324
|
background-color: transparent;
|
|
3820
4325
|
}
|
|
3821
4326
|
}
|
|
3822
4327
|
.dark\:bg-warning-400 {
|
|
3823
|
-
&:is([data-theme
|
|
4328
|
+
&:is([data-theme="dark"] *) {
|
|
3824
4329
|
background-color: hsl(var(--warning-400));
|
|
3825
4330
|
}
|
|
3826
4331
|
}
|
|
3827
4332
|
.dark\:text-brand-400 {
|
|
3828
|
-
&:is([data-theme
|
|
4333
|
+
&:is([data-theme="dark"] *) {
|
|
3829
4334
|
color: hsl(var(--brand-400));
|
|
3830
4335
|
}
|
|
3831
4336
|
}
|
|
4337
|
+
.dark\:opacity-40 {
|
|
4338
|
+
&:is([data-theme="dark"] *) {
|
|
4339
|
+
opacity: 40%;
|
|
4340
|
+
}
|
|
4341
|
+
}
|
|
3832
4342
|
.dark\:hover\:border-brand-500 {
|
|
3833
|
-
&:is([data-theme
|
|
4343
|
+
&:is([data-theme="dark"] *) {
|
|
3834
4344
|
&:hover {
|
|
3835
4345
|
@media (hover: hover) {
|
|
3836
4346
|
border-color: hsl(var(--brand-500));
|
|
@@ -3839,7 +4349,7 @@
|
|
|
3839
4349
|
}
|
|
3840
4350
|
}
|
|
3841
4351
|
.dark\:hover\:bg-brand-600 {
|
|
3842
|
-
&:is([data-theme
|
|
4352
|
+
&:is([data-theme="dark"] *) {
|
|
3843
4353
|
&:hover {
|
|
3844
4354
|
@media (hover: hover) {
|
|
3845
4355
|
background-color: hsl(var(--brand-600));
|
|
@@ -3848,7 +4358,7 @@
|
|
|
3848
4358
|
}
|
|
3849
4359
|
}
|
|
3850
4360
|
.dark\:hover\:bg-destructive-600 {
|
|
3851
|
-
&:is([data-theme
|
|
4361
|
+
&:is([data-theme="dark"] *) {
|
|
3852
4362
|
&:hover {
|
|
3853
4363
|
@media (hover: hover) {
|
|
3854
4364
|
background-color: hsl(var(--destructive-600));
|
|
@@ -3857,7 +4367,7 @@
|
|
|
3857
4367
|
}
|
|
3858
4368
|
}
|
|
3859
4369
|
.dark\:hover\:bg-warning-600 {
|
|
3860
|
-
&:is([data-theme
|
|
4370
|
+
&:is([data-theme="dark"] *) {
|
|
3861
4371
|
&:hover {
|
|
3862
4372
|
@media (hover: hover) {
|
|
3863
4373
|
background-color: hsl(var(--warning-600));
|
|
@@ -3866,7 +4376,7 @@
|
|
|
3866
4376
|
}
|
|
3867
4377
|
}
|
|
3868
4378
|
.dark\:has-data-\[state\=checked\]\:bg-primary\/10 {
|
|
3869
|
-
&:is([data-theme
|
|
4379
|
+
&:is([data-theme="dark"] *) {
|
|
3870
4380
|
&:has(*[data-state="checked"]) {
|
|
3871
4381
|
background-color: hsl(var(--brand-default));
|
|
3872
4382
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -3876,7 +4386,7 @@
|
|
|
3876
4386
|
}
|
|
3877
4387
|
}
|
|
3878
4388
|
.dark\:aria-\[invalid\=true\]\:bg-destructive\/5 {
|
|
3879
|
-
&:is([data-theme
|
|
4389
|
+
&:is([data-theme="dark"] *) {
|
|
3880
4390
|
&[aria-invalid="true"] {
|
|
3881
4391
|
background-color: hsl(var(--destructive-default));
|
|
3882
4392
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -3886,7 +4396,7 @@
|
|
|
3886
4396
|
}
|
|
3887
4397
|
}
|
|
3888
4398
|
.dark\:data-\[active\=true\]\:aria-invalid\:ring-destructive\/40 {
|
|
3889
|
-
&:is([data-theme
|
|
4399
|
+
&:is([data-theme="dark"] *) {
|
|
3890
4400
|
&[data-active="true"] {
|
|
3891
4401
|
&[aria-invalid="true"] {
|
|
3892
4402
|
--tw-ring-color: hsl(var(--destructive-default));
|
|
@@ -3898,7 +4408,7 @@
|
|
|
3898
4408
|
}
|
|
3899
4409
|
}
|
|
3900
4410
|
.dark\:data-\[state\=open\]\:bg-brand-600\/80 {
|
|
3901
|
-
&:is([data-theme
|
|
4411
|
+
&:is([data-theme="dark"] *) {
|
|
3902
4412
|
&[data-state="open"] {
|
|
3903
4413
|
background-color: hsl(var(--brand-600));
|
|
3904
4414
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -3908,7 +4418,7 @@
|
|
|
3908
4418
|
}
|
|
3909
4419
|
}
|
|
3910
4420
|
.dark\:data-\[state\=open\]\:bg-destructive-600\/80 {
|
|
3911
|
-
&:is([data-theme
|
|
4421
|
+
&:is([data-theme="dark"] *) {
|
|
3912
4422
|
&[data-state="open"] {
|
|
3913
4423
|
background-color: hsl(var(--destructive-600));
|
|
3914
4424
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -3918,7 +4428,7 @@
|
|
|
3918
4428
|
}
|
|
3919
4429
|
}
|
|
3920
4430
|
.dark\:data-\[state\=open\]\:bg-warning-600\/80 {
|
|
3921
|
-
&:is([data-theme
|
|
4431
|
+
&:is([data-theme="dark"] *) {
|
|
3922
4432
|
&[data-state="open"] {
|
|
3923
4433
|
background-color: hsl(var(--warning-600));
|
|
3924
4434
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -3928,7 +4438,7 @@
|
|
|
3928
4438
|
}
|
|
3929
4439
|
}
|
|
3930
4440
|
.dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/20 {
|
|
3931
|
-
&:is([data-theme
|
|
4441
|
+
&:is([data-theme="dark"] *) {
|
|
3932
4442
|
&[data-variant="destructive"] {
|
|
3933
4443
|
&:focus {
|
|
3934
4444
|
background-color: hsl(var(--destructive-default));
|
|
@@ -3939,6 +4449,21 @@
|
|
|
3939
4449
|
}
|
|
3940
4450
|
}
|
|
3941
4451
|
}
|
|
4452
|
+
.print\:hidden {
|
|
4453
|
+
@media print {
|
|
4454
|
+
display: none;
|
|
4455
|
+
}
|
|
4456
|
+
}
|
|
4457
|
+
.print\:max-w-none {
|
|
4458
|
+
@media print {
|
|
4459
|
+
max-width: none;
|
|
4460
|
+
}
|
|
4461
|
+
}
|
|
4462
|
+
.print\:border-foreground {
|
|
4463
|
+
@media print {
|
|
4464
|
+
border-color: hsl(var(--foreground-default));
|
|
4465
|
+
}
|
|
4466
|
+
}
|
|
3942
4467
|
.\[\&_\[cmdk-group-heading\]\]\:text-xs {
|
|
3943
4468
|
& [cmdk-group-heading] {
|
|
3944
4469
|
font-size: 0.75rem;
|
|
@@ -3974,6 +4499,35 @@
|
|
|
3974
4499
|
line-height: var(--tw-leading, 1.125rem);
|
|
3975
4500
|
}
|
|
3976
4501
|
}
|
|
4502
|
+
.\[\&_h2\]\:text-xl {
|
|
4503
|
+
& h2 {
|
|
4504
|
+
font-size: 1.25rem;
|
|
4505
|
+
line-height: var(--tw-leading, 1.875rem);
|
|
4506
|
+
}
|
|
4507
|
+
}
|
|
4508
|
+
.\[\&_h2\]\:font-semibold {
|
|
4509
|
+
& h2 {
|
|
4510
|
+
--tw-font-weight: 600;
|
|
4511
|
+
font-weight: 600;
|
|
4512
|
+
}
|
|
4513
|
+
}
|
|
4514
|
+
.\[\&_h3\]\:text-lg {
|
|
4515
|
+
& h3 {
|
|
4516
|
+
font-size: 1.125rem;
|
|
4517
|
+
line-height: var(--tw-leading, 1.75rem);
|
|
4518
|
+
}
|
|
4519
|
+
}
|
|
4520
|
+
.\[\&_h3\]\:font-semibold {
|
|
4521
|
+
& h3 {
|
|
4522
|
+
--tw-font-weight: 600;
|
|
4523
|
+
font-weight: 600;
|
|
4524
|
+
}
|
|
4525
|
+
}
|
|
4526
|
+
.\[\&_section\]\:break-inside-avoid {
|
|
4527
|
+
& section {
|
|
4528
|
+
break-inside: avoid;
|
|
4529
|
+
}
|
|
4530
|
+
}
|
|
3977
4531
|
.\[\&_svg\]\:pointer-events-none {
|
|
3978
4532
|
& svg {
|
|
3979
4533
|
pointer-events: none;
|
|
@@ -4268,11 +4822,25 @@
|
|
|
4268
4822
|
cursor: e-resize;
|
|
4269
4823
|
}
|
|
4270
4824
|
}
|
|
4825
|
+
.rtl\:\[\[data-side\=left\]\[data-state\=collapsed\]_\&\]\:cursor-w-resize {
|
|
4826
|
+
&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
|
|
4827
|
+
[data-side=left][data-state=collapsed] & {
|
|
4828
|
+
cursor: w-resize;
|
|
4829
|
+
}
|
|
4830
|
+
}
|
|
4831
|
+
}
|
|
4271
4832
|
.\[\[data-side\=right\]\[data-state\=collapsed\]_\&\]\:cursor-w-resize {
|
|
4272
4833
|
[data-side=right][data-state=collapsed] & {
|
|
4273
4834
|
cursor: w-resize;
|
|
4274
4835
|
}
|
|
4275
4836
|
}
|
|
4837
|
+
.rtl\:\[\[data-side\=right\]\[data-state\=collapsed\]_\&\]\:cursor-e-resize {
|
|
4838
|
+
&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
|
|
4839
|
+
[data-side=right][data-state=collapsed] & {
|
|
4840
|
+
cursor: e-resize;
|
|
4841
|
+
}
|
|
4842
|
+
}
|
|
4843
|
+
}
|
|
4276
4844
|
.\[\[data-size\=lg\]_\&\]\:h-full {
|
|
4277
4845
|
[data-size=lg] & {
|
|
4278
4846
|
height: 100%;
|
|
@@ -4338,7 +4906,7 @@
|
|
|
4338
4906
|
}
|
|
4339
4907
|
}
|
|
4340
4908
|
.dark\:\[\[data-slot\=tooltip-content\]_\&\]\:bg-background\/10 {
|
|
4341
|
-
&:is([data-theme
|
|
4909
|
+
&:is([data-theme="dark"] *) {
|
|
4342
4910
|
[data-slot=tooltip-content] & {
|
|
4343
4911
|
background-color: hsl(var(--background-default));
|
|
4344
4912
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -4639,11 +5207,14 @@
|
|
|
4639
5207
|
--social-platform-youtube: #FF0000;
|
|
4640
5208
|
--social-platform-linkedin: #0A66C2;
|
|
4641
5209
|
--social-platform-telegram: #26A5E4;
|
|
5210
|
+
--social-platform-tv: #D32F2F;
|
|
5211
|
+
--social-platform-radio: #F57C00;
|
|
4642
5212
|
}
|
|
4643
5213
|
[data-theme='light'], .light {
|
|
4644
5214
|
--helpers-os-appearance: Light;
|
|
4645
5215
|
--social-platform-twitter: #000000;
|
|
4646
5216
|
--social-platform-threads: #000000;
|
|
5217
|
+
--social-platform-press: #1A2332;
|
|
4647
5218
|
--shadow-tooltip: 0 2px 12px rgba(0, 0, 0, 0.12);
|
|
4648
5219
|
--shadow-tooltip-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.06);
|
|
4649
5220
|
--focus-ring-color: hsl(var(--brand-default));
|
|
@@ -4740,11 +5311,39 @@
|
|
|
4740
5311
|
--engagement-low-hover: 25deg 95% 45%;
|
|
4741
5312
|
--engagement-poor: 0deg 84% 60%;
|
|
4742
5313
|
--engagement-poor-hover: 0deg 72% 51%;
|
|
4743
|
-
--engagement-inactive:
|
|
5314
|
+
--engagement-inactive: var(--border-strong);
|
|
4744
5315
|
--sentiment-positive: 142deg 71% 45%;
|
|
4745
5316
|
--sentiment-negative: 0deg 84% 60%;
|
|
4746
5317
|
--sentiment-neutral: 0deg 0% 43.5%;
|
|
4747
|
-
--sentiment-mixed:
|
|
5318
|
+
--sentiment-mixed: 30deg 80% 48%;
|
|
5319
|
+
--emotion-anger: 0deg 72% 48%;
|
|
5320
|
+
--emotion-anticipation: 28deg 82% 50%;
|
|
5321
|
+
--emotion-joy: 48deg 88% 48%;
|
|
5322
|
+
--emotion-trust: 140deg 50% 42%;
|
|
5323
|
+
--emotion-fear: 275deg 30% 36%;
|
|
5324
|
+
--emotion-surprise: 200deg 75% 52%;
|
|
5325
|
+
--emotion-sadness: 230deg 58% 48%;
|
|
5326
|
+
--emotion-disgust: 285deg 50% 48%;
|
|
5327
|
+
--emotion-neutral: 215deg 8% 52%;
|
|
5328
|
+
--flow-pro-gov: 153deg 55% 42%;
|
|
5329
|
+
--flow-internal-critic: 35deg 65% 48%;
|
|
5330
|
+
--flow-internal-opponent: 20deg 75% 50%;
|
|
5331
|
+
--flow-external-opponent: 355deg 65% 52%;
|
|
5332
|
+
--flow-grey: 215deg 10% 52%;
|
|
5333
|
+
--status-critical: var(--destructive-default);
|
|
5334
|
+
--status-warning: var(--warning-default);
|
|
5335
|
+
--status-normal: var(--sentiment-positive);
|
|
5336
|
+
--severity-urgent: 0deg 82% 50%;
|
|
5337
|
+
--severity-high: 22deg 88% 52%;
|
|
5338
|
+
--severity-medium: 40deg 88% 50%;
|
|
5339
|
+
--severity-low: 215deg 10% 55%;
|
|
5340
|
+
--action-type-like: 347deg 77% 50%;
|
|
5341
|
+
--action-type-comment: 217deg 91% 60%;
|
|
5342
|
+
--action-type-save: 38deg 92% 50%;
|
|
5343
|
+
--action-type-follow: 142deg 71% 45%;
|
|
5344
|
+
--action-type-unfollow: 215deg 10% 55%;
|
|
5345
|
+
--action-type-dm: 262deg 83% 58%;
|
|
5346
|
+
--action-type-share: 172deg 76% 40%;
|
|
4748
5347
|
--score-excellent: 142deg 76% 26%;
|
|
4749
5348
|
--score-excellent-bg: 142deg 76% 95%;
|
|
4750
5349
|
--score-good: 84deg 81% 44%;
|
|
@@ -4765,6 +5364,7 @@
|
|
|
4765
5364
|
--helpers-os-appearance: Dark;
|
|
4766
5365
|
--social-platform-twitter: #E7E9EA;
|
|
4767
5366
|
--social-platform-threads: #E7E9EA;
|
|
5367
|
+
--social-platform-press: #C5D0DB;
|
|
4768
5368
|
--shadow-tooltip: 0 2px 12px rgba(0, 0, 0, 0.4);
|
|
4769
5369
|
--shadow-tooltip-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
|
|
4770
5370
|
--focus-ring-color: hsl(var(--brand-default));
|
|
@@ -4844,10 +5444,10 @@
|
|
|
4844
5444
|
--chart-1: 153deg 60% 54%;
|
|
4845
5445
|
--chart-2: 198deg 55% 60%;
|
|
4846
5446
|
--chart-3: 240deg 45% 66%;
|
|
4847
|
-
--chart-4: 310deg
|
|
5447
|
+
--chart-4: 310deg 43% 64%;
|
|
4848
5448
|
--chart-5: 355deg 50% 64%;
|
|
4849
|
-
--chart-6: 35deg
|
|
4850
|
-
--chart-7: 75deg
|
|
5449
|
+
--chart-6: 35deg 57% 60%;
|
|
5450
|
+
--chart-7: 75deg 43% 58%;
|
|
4851
5451
|
--chart-8: 118deg 40% 58%;
|
|
4852
5452
|
--engagement-excellent: 142deg 76% 26%;
|
|
4853
5453
|
--engagement-excellent-hover: 142deg 76% 19%;
|
|
@@ -4861,11 +5461,39 @@
|
|
|
4861
5461
|
--engagement-low-hover: 25deg 95% 45%;
|
|
4862
5462
|
--engagement-poor: 0deg 84% 60%;
|
|
4863
5463
|
--engagement-poor-hover: 0deg 72% 51%;
|
|
4864
|
-
--engagement-inactive:
|
|
5464
|
+
--engagement-inactive: var(--border-strong);
|
|
4865
5465
|
--sentiment-positive: 142deg 71% 45%;
|
|
4866
5466
|
--sentiment-negative: 0deg 84% 60%;
|
|
4867
5467
|
--sentiment-neutral: 0deg 0% 53.7%;
|
|
4868
|
-
--sentiment-mixed:
|
|
5468
|
+
--sentiment-mixed: 35deg 85% 58%;
|
|
5469
|
+
--emotion-anger: 0deg 77% 60%;
|
|
5470
|
+
--emotion-anticipation: 28deg 87% 62%;
|
|
5471
|
+
--emotion-joy: 48deg 88% 58%;
|
|
5472
|
+
--emotion-trust: 140deg 55% 54%;
|
|
5473
|
+
--emotion-fear: 275deg 35% 52%;
|
|
5474
|
+
--emotion-surprise: 200deg 80% 64%;
|
|
5475
|
+
--emotion-sadness: 230deg 63% 62%;
|
|
5476
|
+
--emotion-disgust: 285deg 55% 62%;
|
|
5477
|
+
--emotion-neutral: 215deg 13% 64%;
|
|
5478
|
+
--flow-pro-gov: 153deg 60% 54%;
|
|
5479
|
+
--flow-internal-critic: 35deg 70% 60%;
|
|
5480
|
+
--flow-internal-opponent: 20deg 80% 62%;
|
|
5481
|
+
--flow-external-opponent: 355deg 70% 64%;
|
|
5482
|
+
--flow-grey: 215deg 15% 64%;
|
|
5483
|
+
--status-critical: var(--destructive-default);
|
|
5484
|
+
--status-warning: var(--warning-default);
|
|
5485
|
+
--status-normal: var(--sentiment-positive);
|
|
5486
|
+
--severity-urgent: 0deg 87% 62%;
|
|
5487
|
+
--severity-high: 22deg 93% 62%;
|
|
5488
|
+
--severity-medium: 40deg 93% 60%;
|
|
5489
|
+
--severity-low: 215deg 15% 65%;
|
|
5490
|
+
--action-type-like: 347deg 82% 62%;
|
|
5491
|
+
--action-type-comment: 217deg 91% 68%;
|
|
5492
|
+
--action-type-save: 38deg 92% 58%;
|
|
5493
|
+
--action-type-follow: 142deg 71% 52%;
|
|
5494
|
+
--action-type-unfollow: 215deg 15% 65%;
|
|
5495
|
+
--action-type-dm: 262deg 83% 70%;
|
|
5496
|
+
--action-type-share: 172deg 76% 50%;
|
|
4869
5497
|
--score-excellent: 142deg 76% 36%;
|
|
4870
5498
|
--score-excellent-bg: 142deg 76% 10%;
|
|
4871
5499
|
--score-good: 84deg 81% 44%;
|
|
@@ -5818,6 +6446,21 @@
|
|
|
5818
6446
|
inherits: false;
|
|
5819
6447
|
initial-value: 0;
|
|
5820
6448
|
}
|
|
6449
|
+
@property --tw-scale-x {
|
|
6450
|
+
syntax: "*";
|
|
6451
|
+
inherits: false;
|
|
6452
|
+
initial-value: 1;
|
|
6453
|
+
}
|
|
6454
|
+
@property --tw-scale-y {
|
|
6455
|
+
syntax: "*";
|
|
6456
|
+
inherits: false;
|
|
6457
|
+
initial-value: 1;
|
|
6458
|
+
}
|
|
6459
|
+
@property --tw-scale-z {
|
|
6460
|
+
syntax: "*";
|
|
6461
|
+
inherits: false;
|
|
6462
|
+
initial-value: 1;
|
|
6463
|
+
}
|
|
5821
6464
|
@property --tw-rotate-x {
|
|
5822
6465
|
syntax: "*";
|
|
5823
6466
|
inherits: false;
|
|
@@ -5838,6 +6481,11 @@
|
|
|
5838
6481
|
syntax: "*";
|
|
5839
6482
|
inherits: false;
|
|
5840
6483
|
}
|
|
6484
|
+
@property --tw-divide-y-reverse {
|
|
6485
|
+
syntax: "*";
|
|
6486
|
+
inherits: false;
|
|
6487
|
+
initial-value: 0;
|
|
6488
|
+
}
|
|
5841
6489
|
@property --tw-border-style {
|
|
5842
6490
|
syntax: "*";
|
|
5843
6491
|
inherits: false;
|
|
@@ -6044,21 +6692,6 @@
|
|
|
6044
6692
|
syntax: "*";
|
|
6045
6693
|
inherits: false;
|
|
6046
6694
|
}
|
|
6047
|
-
@property --tw-scale-x {
|
|
6048
|
-
syntax: "*";
|
|
6049
|
-
inherits: false;
|
|
6050
|
-
initial-value: 1;
|
|
6051
|
-
}
|
|
6052
|
-
@property --tw-scale-y {
|
|
6053
|
-
syntax: "*";
|
|
6054
|
-
inherits: false;
|
|
6055
|
-
initial-value: 1;
|
|
6056
|
-
}
|
|
6057
|
-
@property --tw-scale-z {
|
|
6058
|
-
syntax: "*";
|
|
6059
|
-
inherits: false;
|
|
6060
|
-
initial-value: 1;
|
|
6061
|
-
}
|
|
6062
6695
|
@property --tw-content {
|
|
6063
6696
|
syntax: "*";
|
|
6064
6697
|
initial-value: "";
|
|
@@ -6075,11 +6708,15 @@
|
|
|
6075
6708
|
--tw-translate-x: 0;
|
|
6076
6709
|
--tw-translate-y: 0;
|
|
6077
6710
|
--tw-translate-z: 0;
|
|
6711
|
+
--tw-scale-x: 1;
|
|
6712
|
+
--tw-scale-y: 1;
|
|
6713
|
+
--tw-scale-z: 1;
|
|
6078
6714
|
--tw-rotate-x: initial;
|
|
6079
6715
|
--tw-rotate-y: initial;
|
|
6080
6716
|
--tw-rotate-z: initial;
|
|
6081
6717
|
--tw-skew-x: initial;
|
|
6082
6718
|
--tw-skew-y: initial;
|
|
6719
|
+
--tw-divide-y-reverse: 0;
|
|
6083
6720
|
--tw-border-style: solid;
|
|
6084
6721
|
--tw-gradient-position: initial;
|
|
6085
6722
|
--tw-gradient-from: #0000;
|
|
@@ -6127,9 +6764,6 @@
|
|
|
6127
6764
|
--tw-drop-shadow-size: initial;
|
|
6128
6765
|
--tw-duration: initial;
|
|
6129
6766
|
--tw-ease: initial;
|
|
6130
|
-
--tw-scale-x: 1;
|
|
6131
|
-
--tw-scale-y: 1;
|
|
6132
|
-
--tw-scale-z: 1;
|
|
6133
6767
|
--tw-content: "";
|
|
6134
6768
|
--tw-space-x-reverse: 0;
|
|
6135
6769
|
}
|