linkedunion-design-kit 1.10.6-beta.2 → 1.10.7-beta.1
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.d.ts +5 -0
- package/dist/index.js +5 -0
- package/dist/src/components/Alerts/Alert/alert.js +1 -0
- package/dist/src/components/Button/Button/Button.d.ts +2 -1
- package/dist/src/components/Button/Button/Button.js +18 -6
- package/dist/src/components/Button/Button/Button.stories.d.ts +4 -2
- package/dist/src/components/Button/index.d.ts +1 -0
- package/dist/src/components/Button/index.js +3 -3
- package/dist/src/components/Dropdown/DropdownMenu/DropdownMenu.d.ts +6 -2
- package/dist/src/components/Dropdown/DropdownMenu/DropdownMenu.js +7 -6
- package/dist/src/components/Dropdown/DropdownMenu/DropdownMenu.stories.d.ts +8 -1
- package/dist/src/components/Dropdown/DropdownMenu/DropdownMenu.stories.js +48 -3
- package/dist/src/components/Dropdown/DropdownMenu/index.d.ts +5 -0
- package/dist/src/components/Dropdown/DropdownMenu/index.js +5 -0
- package/dist/src/components/Dropdown/select.js +1 -1
- package/dist/src/components/MenuBar/menubar.d.ts +26 -0
- package/dist/src/components/MenuBar/menubar.js +92 -0
- package/dist/src/components/MenuBar/menubar.stories.d.ts +14 -0
- package/dist/src/components/MenuBar/menubar.stories.js +59 -0
- package/dist/src/components/NavigationMenu/index.d.ts +1 -0
- package/dist/src/components/NavigationMenu/index.js +1 -0
- package/dist/src/components/NavigationMenu/navigation-menu.d.ts +14 -0
- package/dist/src/components/NavigationMenu/navigation-menu.js +62 -0
- package/dist/src/components/NavigationMenu/navigation-menu.stories.d.ts +29 -0
- package/dist/src/components/NavigationMenu/navigation-menu.stories.js +91 -0
- package/dist/src/components/Separator/Separator.stories.d.ts +15 -0
- package/dist/src/components/Separator/Separator.stories.js +79 -0
- package/dist/src/components/Separator/index.d.ts +1 -0
- package/dist/src/components/Separator/index.js +1 -0
- package/dist/src/components/Separator/separator.d.ts +4 -0
- package/dist/src/components/Separator/separator.js +32 -0
- package/dist/src/components/Sheet/index.d.ts +1 -0
- package/dist/src/components/Sheet/index.js +1 -0
- package/dist/src/components/Sheet/sheet.d.ts +25 -0
- package/dist/src/components/Sheet/sheet.js +76 -0
- package/dist/src/components/Sheet/sheet.stories.d.ts +7 -0
- package/dist/src/components/Sheet/sheet.stories.js +21 -0
- package/dist/styles/global.css +524 -0
- package/package.json +4 -1
package/dist/styles/global.css
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"Courier New", monospace;
|
|
10
10
|
--spacing: 0.25rem;
|
|
11
11
|
--container-xs: 20rem;
|
|
12
|
+
--container-sm: 24rem;
|
|
12
13
|
--container-md: 28rem;
|
|
13
14
|
--container-lg: 32rem;
|
|
14
15
|
--container-4xl: 56rem;
|
|
@@ -46,6 +47,8 @@
|
|
|
46
47
|
--font-weight-bold: 700;
|
|
47
48
|
--tracking-tight: -0.025em;
|
|
48
49
|
--tracking-widest: 0.1em;
|
|
50
|
+
--leading-tight: 1.25;
|
|
51
|
+
--leading-snug: 1.375;
|
|
49
52
|
--leading-normal: 1.5;
|
|
50
53
|
--radius-xs: 0.125rem;
|
|
51
54
|
--radius-sm: 0.25rem;
|
|
@@ -245,6 +248,12 @@
|
|
|
245
248
|
.inset-0 {
|
|
246
249
|
inset: calc(var(--spacing) * 0);
|
|
247
250
|
}
|
|
251
|
+
.inset-x-0 {
|
|
252
|
+
inset-inline: calc(var(--spacing) * 0);
|
|
253
|
+
}
|
|
254
|
+
.inset-y-0 {
|
|
255
|
+
inset-block: calc(var(--spacing) * 0);
|
|
256
|
+
}
|
|
248
257
|
.top-0 {
|
|
249
258
|
top: calc(var(--spacing) * 0);
|
|
250
259
|
}
|
|
@@ -269,9 +278,15 @@
|
|
|
269
278
|
.top-4 {
|
|
270
279
|
top: calc(var(--spacing) * 4);
|
|
271
280
|
}
|
|
281
|
+
.top-\[1px\] {
|
|
282
|
+
top: 1px;
|
|
283
|
+
}
|
|
272
284
|
.top-\[50\%\] {
|
|
273
285
|
top: 50%;
|
|
274
286
|
}
|
|
287
|
+
.top-\[60\%\] {
|
|
288
|
+
top: 60%;
|
|
289
|
+
}
|
|
275
290
|
.top-full {
|
|
276
291
|
top: 100%;
|
|
277
292
|
}
|
|
@@ -317,12 +332,21 @@
|
|
|
317
332
|
.left-\[50\%\] {
|
|
318
333
|
left: 50%;
|
|
319
334
|
}
|
|
335
|
+
.left-auto {
|
|
336
|
+
left: auto;
|
|
337
|
+
}
|
|
338
|
+
.isolate {
|
|
339
|
+
isolation: isolate;
|
|
340
|
+
}
|
|
320
341
|
.z-10 {
|
|
321
342
|
z-index: 10;
|
|
322
343
|
}
|
|
323
344
|
.z-50 {
|
|
324
345
|
z-index: 50;
|
|
325
346
|
}
|
|
347
|
+
.z-\[1\] {
|
|
348
|
+
z-index: 1;
|
|
349
|
+
}
|
|
326
350
|
.z-\[1000\] {
|
|
327
351
|
z-index: 1000;
|
|
328
352
|
}
|
|
@@ -338,6 +362,9 @@
|
|
|
338
362
|
.order-last {
|
|
339
363
|
order: 9999;
|
|
340
364
|
}
|
|
365
|
+
.row-span-3 {
|
|
366
|
+
grid-row: span 3 / span 3;
|
|
367
|
+
}
|
|
341
368
|
.container {
|
|
342
369
|
width: 100%;
|
|
343
370
|
@media (width >= 480px) {
|
|
@@ -371,9 +398,15 @@
|
|
|
371
398
|
.-mx-1 {
|
|
372
399
|
margin-inline: calc(var(--spacing) * -1);
|
|
373
400
|
}
|
|
401
|
+
.mx-4 {
|
|
402
|
+
margin-inline: calc(var(--spacing) * 4);
|
|
403
|
+
}
|
|
374
404
|
.mx-auto {
|
|
375
405
|
margin-inline: auto;
|
|
376
406
|
}
|
|
407
|
+
.\!my-1 {
|
|
408
|
+
margin-block: calc(var(--spacing) * 1) !important;
|
|
409
|
+
}
|
|
377
410
|
.my-1 {
|
|
378
411
|
margin-block: calc(var(--spacing) * 1);
|
|
379
412
|
}
|
|
@@ -395,6 +428,9 @@
|
|
|
395
428
|
.mt-1 {
|
|
396
429
|
margin-top: calc(var(--spacing) * 1);
|
|
397
430
|
}
|
|
431
|
+
.mt-1\.5 {
|
|
432
|
+
margin-top: calc(var(--spacing) * 1.5);
|
|
433
|
+
}
|
|
398
434
|
.mt-2 {
|
|
399
435
|
margin-top: calc(var(--spacing) * 2);
|
|
400
436
|
}
|
|
@@ -703,6 +739,12 @@
|
|
|
703
739
|
.h-\[1\.125rem\] {
|
|
704
740
|
height: 1.125rem;
|
|
705
741
|
}
|
|
742
|
+
.h-\[1px\] {
|
|
743
|
+
height: 1px;
|
|
744
|
+
}
|
|
745
|
+
.h-\[var\(--radix-navigation-menu-viewport-height\)\] {
|
|
746
|
+
height: var(--radix-navigation-menu-viewport-height);
|
|
747
|
+
}
|
|
706
748
|
.h-\[var\(--radix-select-trigger-height\)\] {
|
|
707
749
|
height: var(--radix-select-trigger-height);
|
|
708
750
|
}
|
|
@@ -856,12 +898,21 @@
|
|
|
856
898
|
.w-96 {
|
|
857
899
|
width: calc(var(--spacing) * 96);
|
|
858
900
|
}
|
|
901
|
+
.w-\[1px\] {
|
|
902
|
+
width: 1px;
|
|
903
|
+
}
|
|
904
|
+
.w-auto {
|
|
905
|
+
width: auto;
|
|
906
|
+
}
|
|
859
907
|
.w-fit {
|
|
860
908
|
width: fit-content;
|
|
861
909
|
}
|
|
862
910
|
.w-full {
|
|
863
911
|
width: 100%;
|
|
864
912
|
}
|
|
913
|
+
.w-max {
|
|
914
|
+
width: max-content;
|
|
915
|
+
}
|
|
865
916
|
.w-xs {
|
|
866
917
|
width: var(--container-xs);
|
|
867
918
|
}
|
|
@@ -895,6 +946,9 @@
|
|
|
895
946
|
.max-w-lg {
|
|
896
947
|
max-width: var(--container-lg);
|
|
897
948
|
}
|
|
949
|
+
.max-w-max {
|
|
950
|
+
max-width: max-content;
|
|
951
|
+
}
|
|
898
952
|
.max-w-md {
|
|
899
953
|
max-width: var(--container-md);
|
|
900
954
|
}
|
|
@@ -916,6 +970,12 @@
|
|
|
916
970
|
.min-w-\[8rem\] {
|
|
917
971
|
min-width: 8rem;
|
|
918
972
|
}
|
|
973
|
+
.min-w-\[12rem\] {
|
|
974
|
+
min-width: 12rem;
|
|
975
|
+
}
|
|
976
|
+
.min-w-\[320px\] {
|
|
977
|
+
min-width: 320px;
|
|
978
|
+
}
|
|
919
979
|
.min-w-\[var\(--radix-select-trigger-width\)\] {
|
|
920
980
|
min-width: var(--radix-select-trigger-width);
|
|
921
981
|
}
|
|
@@ -944,6 +1004,9 @@
|
|
|
944
1004
|
--tw-border-spacing-y: calc(var(--spacing) * 5);
|
|
945
1005
|
border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
|
|
946
1006
|
}
|
|
1007
|
+
.origin-\(--radix-menubar-content-transform-origin\) {
|
|
1008
|
+
transform-origin: var(--radix-menubar-content-transform-origin);
|
|
1009
|
+
}
|
|
947
1010
|
.origin-\(--radix-popover-content-transform-origin\) {
|
|
948
1011
|
transform-origin: var(--radix-popover-content-transform-origin);
|
|
949
1012
|
}
|
|
@@ -1025,6 +1088,9 @@
|
|
|
1025
1088
|
.scroll-py-1 {
|
|
1026
1089
|
scroll-padding-block: calc(var(--spacing) * 1);
|
|
1027
1090
|
}
|
|
1091
|
+
.list-none {
|
|
1092
|
+
list-style-type: none;
|
|
1093
|
+
}
|
|
1028
1094
|
.grid-cols-1 {
|
|
1029
1095
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1030
1096
|
}
|
|
@@ -1064,6 +1130,9 @@
|
|
|
1064
1130
|
.items-center {
|
|
1065
1131
|
align-items: center;
|
|
1066
1132
|
}
|
|
1133
|
+
.items-end {
|
|
1134
|
+
align-items: flex-end;
|
|
1135
|
+
}
|
|
1067
1136
|
.items-start {
|
|
1068
1137
|
align-items: flex-start;
|
|
1069
1138
|
}
|
|
@@ -1076,6 +1145,9 @@
|
|
|
1076
1145
|
.justify-center {
|
|
1077
1146
|
justify-content: center;
|
|
1078
1147
|
}
|
|
1148
|
+
.justify-end {
|
|
1149
|
+
justify-content: flex-end;
|
|
1150
|
+
}
|
|
1079
1151
|
.justify-start {
|
|
1080
1152
|
justify-content: flex-start;
|
|
1081
1153
|
}
|
|
@@ -1276,6 +1348,9 @@
|
|
|
1276
1348
|
border-top-left-radius: var(--radius-sm);
|
|
1277
1349
|
border-bottom-left-radius: var(--radius-sm);
|
|
1278
1350
|
}
|
|
1351
|
+
.rounded-tl-sm {
|
|
1352
|
+
border-top-left-radius: var(--radius-sm);
|
|
1353
|
+
}
|
|
1279
1354
|
.rounded-r-sm {
|
|
1280
1355
|
border-top-right-radius: var(--radius-sm);
|
|
1281
1356
|
border-bottom-right-radius: var(--radius-sm);
|
|
@@ -1336,6 +1411,10 @@
|
|
|
1336
1411
|
border-bottom-style: var(--tw-border-style);
|
|
1337
1412
|
border-bottom-width: 0px;
|
|
1338
1413
|
}
|
|
1414
|
+
.border-l {
|
|
1415
|
+
border-left-style: var(--tw-border-style);
|
|
1416
|
+
border-left-width: 1px;
|
|
1417
|
+
}
|
|
1339
1418
|
.border-l-4 {
|
|
1340
1419
|
border-left-style: var(--tw-border-style);
|
|
1341
1420
|
border-left-width: 4px;
|
|
@@ -1583,6 +1662,9 @@
|
|
|
1583
1662
|
.bg-muted {
|
|
1584
1663
|
background-color: var(--muted);
|
|
1585
1664
|
}
|
|
1665
|
+
.bg-popover {
|
|
1666
|
+
background-color: var(--popover);
|
|
1667
|
+
}
|
|
1586
1668
|
.bg-red-50 {
|
|
1587
1669
|
background-color: #fffafa;
|
|
1588
1670
|
}
|
|
@@ -1853,6 +1935,9 @@
|
|
|
1853
1935
|
.\!ps-12 {
|
|
1854
1936
|
padding-inline-start: calc(var(--spacing) * 12) !important;
|
|
1855
1937
|
}
|
|
1938
|
+
.\!pr-2 {
|
|
1939
|
+
padding-right: calc(var(--spacing) * 2) !important;
|
|
1940
|
+
}
|
|
1856
1941
|
.pr-2 {
|
|
1857
1942
|
padding-right: calc(var(--spacing) * 2);
|
|
1858
1943
|
}
|
|
@@ -2006,6 +2091,14 @@
|
|
|
2006
2091
|
--tw-leading: var(--leading-normal);
|
|
2007
2092
|
line-height: var(--leading-normal);
|
|
2008
2093
|
}
|
|
2094
|
+
.leading-snug {
|
|
2095
|
+
--tw-leading: var(--leading-snug);
|
|
2096
|
+
line-height: var(--leading-snug);
|
|
2097
|
+
}
|
|
2098
|
+
.leading-tight {
|
|
2099
|
+
--tw-leading: var(--leading-tight);
|
|
2100
|
+
line-height: var(--leading-tight);
|
|
2101
|
+
}
|
|
2009
2102
|
.\!font-normal {
|
|
2010
2103
|
--tw-font-weight: var(--font-weight-normal) !important;
|
|
2011
2104
|
font-weight: var(--font-weight-normal) !important;
|
|
@@ -2206,6 +2299,9 @@
|
|
|
2206
2299
|
.text-muted-foreground {
|
|
2207
2300
|
color: var(--muted-foreground);
|
|
2208
2301
|
}
|
|
2302
|
+
.text-popover-foreground {
|
|
2303
|
+
color: var(--popover-foreground);
|
|
2304
|
+
}
|
|
2209
2305
|
.text-red-50 {
|
|
2210
2306
|
color: #fffafa;
|
|
2211
2307
|
}
|
|
@@ -2509,6 +2605,59 @@
|
|
|
2509
2605
|
z-index: 10;
|
|
2510
2606
|
}
|
|
2511
2607
|
}
|
|
2608
|
+
.group-data-\[state\=open\]\:rotate-180 {
|
|
2609
|
+
&:is(:where(.group)[data-state="open"] *) {
|
|
2610
|
+
rotate: 180deg;
|
|
2611
|
+
}
|
|
2612
|
+
}
|
|
2613
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:top-full {
|
|
2614
|
+
&:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
2615
|
+
top: 100%;
|
|
2616
|
+
}
|
|
2617
|
+
}
|
|
2618
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:mt-1\.5 {
|
|
2619
|
+
&:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
2620
|
+
margin-top: calc(var(--spacing) * 1.5);
|
|
2621
|
+
}
|
|
2622
|
+
}
|
|
2623
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:overflow-hidden {
|
|
2624
|
+
&:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
2625
|
+
overflow: hidden;
|
|
2626
|
+
}
|
|
2627
|
+
}
|
|
2628
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:rounded-md {
|
|
2629
|
+
&:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
2630
|
+
border-radius: var(--radius-md);
|
|
2631
|
+
}
|
|
2632
|
+
}
|
|
2633
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:border {
|
|
2634
|
+
&:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
2635
|
+
border-style: var(--tw-border-style);
|
|
2636
|
+
border-width: 1px;
|
|
2637
|
+
}
|
|
2638
|
+
}
|
|
2639
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:bg-popover {
|
|
2640
|
+
&:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
2641
|
+
background-color: var(--popover);
|
|
2642
|
+
}
|
|
2643
|
+
}
|
|
2644
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:text-popover-foreground {
|
|
2645
|
+
&:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
2646
|
+
color: var(--popover-foreground);
|
|
2647
|
+
}
|
|
2648
|
+
}
|
|
2649
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:shadow {
|
|
2650
|
+
&:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
2651
|
+
--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));
|
|
2652
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2653
|
+
}
|
|
2654
|
+
}
|
|
2655
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:duration-200 {
|
|
2656
|
+
&:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
2657
|
+
--tw-duration: 200ms;
|
|
2658
|
+
transition-duration: 200ms;
|
|
2659
|
+
}
|
|
2660
|
+
}
|
|
2512
2661
|
.peer-disabled\:cursor-not-allowed {
|
|
2513
2662
|
&:is(:where(.peer):disabled ~ *) {
|
|
2514
2663
|
cursor: not-allowed;
|
|
@@ -2751,6 +2900,13 @@
|
|
|
2751
2900
|
}
|
|
2752
2901
|
}
|
|
2753
2902
|
}
|
|
2903
|
+
.hover\:bg-accent {
|
|
2904
|
+
&:hover {
|
|
2905
|
+
@media (hover: hover) {
|
|
2906
|
+
background-color: var(--accent);
|
|
2907
|
+
}
|
|
2908
|
+
}
|
|
2909
|
+
}
|
|
2754
2910
|
.hover\:bg-blue-50 {
|
|
2755
2911
|
&:hover {
|
|
2756
2912
|
@media (hover: hover) {
|
|
@@ -3220,6 +3376,13 @@
|
|
|
3220
3376
|
}
|
|
3221
3377
|
}
|
|
3222
3378
|
}
|
|
3379
|
+
.hover\:text-accent-foreground {
|
|
3380
|
+
&:hover {
|
|
3381
|
+
@media (hover: hover) {
|
|
3382
|
+
color: var(--accent-foreground);
|
|
3383
|
+
}
|
|
3384
|
+
}
|
|
3385
|
+
}
|
|
3223
3386
|
.hover\:text-blue-50 {
|
|
3224
3387
|
&:hover {
|
|
3225
3388
|
@media (hover: hover) {
|
|
@@ -3896,6 +4059,12 @@
|
|
|
3896
4059
|
}
|
|
3897
4060
|
}
|
|
3898
4061
|
}
|
|
4062
|
+
.focus-visible\:outline-1 {
|
|
4063
|
+
&:focus-visible {
|
|
4064
|
+
outline-style: var(--tw-outline-style);
|
|
4065
|
+
outline-width: 1px;
|
|
4066
|
+
}
|
|
4067
|
+
}
|
|
3899
4068
|
.focus-visible\:outline-none {
|
|
3900
4069
|
&:focus-visible {
|
|
3901
4070
|
--tw-outline-style: none;
|
|
@@ -4080,6 +4249,35 @@
|
|
|
4080
4249
|
color: #B9BBBD;
|
|
4081
4250
|
}
|
|
4082
4251
|
}
|
|
4252
|
+
.data-\[active\=true\]\:bg-accent\/50 {
|
|
4253
|
+
&[data-active="true"] {
|
|
4254
|
+
background-color: var(--accent);
|
|
4255
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4256
|
+
background-color: color-mix(in oklab, var(--accent) 50%, transparent);
|
|
4257
|
+
}
|
|
4258
|
+
}
|
|
4259
|
+
}
|
|
4260
|
+
.data-\[active\=true\]\:text-accent-foreground {
|
|
4261
|
+
&[data-active="true"] {
|
|
4262
|
+
color: var(--accent-foreground);
|
|
4263
|
+
}
|
|
4264
|
+
}
|
|
4265
|
+
.data-\[active\=true\]\:hover\:bg-accent {
|
|
4266
|
+
&[data-active="true"] {
|
|
4267
|
+
&:hover {
|
|
4268
|
+
@media (hover: hover) {
|
|
4269
|
+
background-color: var(--accent);
|
|
4270
|
+
}
|
|
4271
|
+
}
|
|
4272
|
+
}
|
|
4273
|
+
}
|
|
4274
|
+
.data-\[active\=true\]\:focus\:bg-accent {
|
|
4275
|
+
&[data-active="true"] {
|
|
4276
|
+
&:focus {
|
|
4277
|
+
background-color: var(--accent);
|
|
4278
|
+
}
|
|
4279
|
+
}
|
|
4280
|
+
}
|
|
4083
4281
|
.data-\[disabled\]\:pointer-events-none {
|
|
4084
4282
|
&[data-disabled] {
|
|
4085
4283
|
pointer-events: none;
|
|
@@ -4110,6 +4308,51 @@
|
|
|
4110
4308
|
opacity: 50%;
|
|
4111
4309
|
}
|
|
4112
4310
|
}
|
|
4311
|
+
.data-\[inset\]\:pl-8 {
|
|
4312
|
+
&[data-inset] {
|
|
4313
|
+
padding-left: calc(var(--spacing) * 8);
|
|
4314
|
+
}
|
|
4315
|
+
}
|
|
4316
|
+
.data-\[motion\=from-end\]\:slide-in-from-right-52 {
|
|
4317
|
+
&[data-motion="from-end"] {
|
|
4318
|
+
--tw-enter-translate-x: calc(52*var(--spacing));
|
|
4319
|
+
}
|
|
4320
|
+
}
|
|
4321
|
+
.data-\[motion\=from-start\]\:slide-in-from-left-52 {
|
|
4322
|
+
&[data-motion="from-start"] {
|
|
4323
|
+
--tw-enter-translate-x: calc(52*var(--spacing)*-1);
|
|
4324
|
+
}
|
|
4325
|
+
}
|
|
4326
|
+
.data-\[motion\=to-end\]\:slide-out-to-right-52 {
|
|
4327
|
+
&[data-motion="to-end"] {
|
|
4328
|
+
--tw-exit-translate-x: calc(52*var(--spacing));
|
|
4329
|
+
}
|
|
4330
|
+
}
|
|
4331
|
+
.data-\[motion\=to-start\]\:slide-out-to-left-52 {
|
|
4332
|
+
&[data-motion="to-start"] {
|
|
4333
|
+
--tw-exit-translate-x: calc(52*var(--spacing)*-1);
|
|
4334
|
+
}
|
|
4335
|
+
}
|
|
4336
|
+
.data-\[motion\^\=from-\]\:animate-in {
|
|
4337
|
+
&[data-motion^="from-"] {
|
|
4338
|
+
animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
4339
|
+
}
|
|
4340
|
+
}
|
|
4341
|
+
.data-\[motion\^\=from-\]\:fade-in {
|
|
4342
|
+
&[data-motion^="from-"] {
|
|
4343
|
+
--tw-enter-opacity: 0;
|
|
4344
|
+
}
|
|
4345
|
+
}
|
|
4346
|
+
.data-\[motion\^\=to-\]\:animate-out {
|
|
4347
|
+
&[data-motion^="to-"] {
|
|
4348
|
+
animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
4349
|
+
}
|
|
4350
|
+
}
|
|
4351
|
+
.data-\[motion\^\=to-\]\:fade-out {
|
|
4352
|
+
&[data-motion^="to-"] {
|
|
4353
|
+
--tw-exit-opacity: 0;
|
|
4354
|
+
}
|
|
4355
|
+
}
|
|
4113
4356
|
.data-\[orientation\=horizontal\]\:h-1\.5 {
|
|
4114
4357
|
&[data-orientation="horizontal"] {
|
|
4115
4358
|
height: calc(var(--spacing) * 1.5);
|
|
@@ -4335,6 +4578,26 @@
|
|
|
4335
4578
|
}
|
|
4336
4579
|
}
|
|
4337
4580
|
}
|
|
4581
|
+
.\*\*\:data-\[slot\=navigation-menu-link\]\:focus\:ring-0 {
|
|
4582
|
+
:is(& *) {
|
|
4583
|
+
&[data-slot="navigation-menu-link"] {
|
|
4584
|
+
&:focus {
|
|
4585
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
4586
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
4587
|
+
}
|
|
4588
|
+
}
|
|
4589
|
+
}
|
|
4590
|
+
}
|
|
4591
|
+
.\*\*\:data-\[slot\=navigation-menu-link\]\:focus\:outline-none {
|
|
4592
|
+
:is(& *) {
|
|
4593
|
+
&[data-slot="navigation-menu-link"] {
|
|
4594
|
+
&:focus {
|
|
4595
|
+
--tw-outline-style: none;
|
|
4596
|
+
outline-style: none;
|
|
4597
|
+
}
|
|
4598
|
+
}
|
|
4599
|
+
}
|
|
4600
|
+
}
|
|
4338
4601
|
.\*\:data-\[slot\=select-value\]\:line-clamp-1 {
|
|
4339
4602
|
:is(& > *) {
|
|
4340
4603
|
&[data-slot="select-value"] {
|
|
@@ -4457,6 +4720,12 @@
|
|
|
4457
4720
|
opacity: 0%;
|
|
4458
4721
|
}
|
|
4459
4722
|
}
|
|
4723
|
+
.data-\[state\=closed\]\:duration-300 {
|
|
4724
|
+
&[data-state="closed"] {
|
|
4725
|
+
--tw-duration: 300ms;
|
|
4726
|
+
transition-duration: 300ms;
|
|
4727
|
+
}
|
|
4728
|
+
}
|
|
4460
4729
|
.data-\[state\=closed\]\:fade-out-0 {
|
|
4461
4730
|
&[data-state="closed"] {
|
|
4462
4731
|
--tw-exit-opacity: calc(0/100);
|
|
@@ -4469,6 +4738,59 @@
|
|
|
4469
4738
|
--tw-exit-scale: .95;
|
|
4470
4739
|
}
|
|
4471
4740
|
}
|
|
4741
|
+
.data-\[state\=closed\]\:slide-out-to-bottom {
|
|
4742
|
+
&[data-state="closed"] {
|
|
4743
|
+
--tw-exit-translate-y: 100%;
|
|
4744
|
+
}
|
|
4745
|
+
}
|
|
4746
|
+
.data-\[state\=closed\]\:slide-out-to-left {
|
|
4747
|
+
&[data-state="closed"] {
|
|
4748
|
+
--tw-exit-translate-x: -100%;
|
|
4749
|
+
}
|
|
4750
|
+
}
|
|
4751
|
+
.data-\[state\=closed\]\:slide-out-to-right {
|
|
4752
|
+
&[data-state="closed"] {
|
|
4753
|
+
--tw-exit-translate-x: 100%;
|
|
4754
|
+
}
|
|
4755
|
+
}
|
|
4756
|
+
.data-\[state\=closed\]\:slide-out-to-top {
|
|
4757
|
+
&[data-state="closed"] {
|
|
4758
|
+
--tw-exit-translate-y: -100%;
|
|
4759
|
+
}
|
|
4760
|
+
}
|
|
4761
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=closed\]\:animate-out {
|
|
4762
|
+
&:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
4763
|
+
&[data-state="closed"] {
|
|
4764
|
+
animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
4765
|
+
}
|
|
4766
|
+
}
|
|
4767
|
+
}
|
|
4768
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=closed\]\:fade-out-0 {
|
|
4769
|
+
&:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
4770
|
+
&[data-state="closed"] {
|
|
4771
|
+
--tw-exit-opacity: calc(0/100);
|
|
4772
|
+
--tw-exit-opacity: 0;
|
|
4773
|
+
}
|
|
4774
|
+
}
|
|
4775
|
+
}
|
|
4776
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=closed\]\:zoom-out-95 {
|
|
4777
|
+
&:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
4778
|
+
&[data-state="closed"] {
|
|
4779
|
+
--tw-exit-scale: calc(95*1%);
|
|
4780
|
+
--tw-exit-scale: .95;
|
|
4781
|
+
}
|
|
4782
|
+
}
|
|
4783
|
+
}
|
|
4784
|
+
.data-\[state\=hidden\]\:animate-out {
|
|
4785
|
+
&[data-state="hidden"] {
|
|
4786
|
+
animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
4787
|
+
}
|
|
4788
|
+
}
|
|
4789
|
+
.data-\[state\=hidden\]\:fade-out {
|
|
4790
|
+
&[data-state="hidden"] {
|
|
4791
|
+
--tw-exit-opacity: 0;
|
|
4792
|
+
}
|
|
4793
|
+
}
|
|
4472
4794
|
.data-\[state\=inactive\]\:bg-blue-100 {
|
|
4473
4795
|
&[data-state="inactive"] {
|
|
4474
4796
|
background-color: #e2edf9;
|
|
@@ -4502,6 +4824,24 @@
|
|
|
4502
4824
|
background-color: var(--accent);
|
|
4503
4825
|
}
|
|
4504
4826
|
}
|
|
4827
|
+
.data-\[state\=open\]\:bg-accent\/50 {
|
|
4828
|
+
&[data-state="open"] {
|
|
4829
|
+
background-color: var(--accent);
|
|
4830
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4831
|
+
background-color: color-mix(in oklab, var(--accent) 50%, transparent);
|
|
4832
|
+
}
|
|
4833
|
+
}
|
|
4834
|
+
}
|
|
4835
|
+
.data-\[state\=open\]\:bg-secondary {
|
|
4836
|
+
&[data-state="open"] {
|
|
4837
|
+
background-color: var(--secondary);
|
|
4838
|
+
}
|
|
4839
|
+
}
|
|
4840
|
+
.data-\[state\=open\]\:text-accent-foreground {
|
|
4841
|
+
&[data-state="open"] {
|
|
4842
|
+
color: var(--accent-foreground);
|
|
4843
|
+
}
|
|
4844
|
+
}
|
|
4505
4845
|
.data-\[state\=open\]\:text-muted-foreground {
|
|
4506
4846
|
&[data-state="open"] {
|
|
4507
4847
|
color: var(--muted-foreground);
|
|
@@ -4512,18 +4852,89 @@
|
|
|
4512
4852
|
opacity: 100%;
|
|
4513
4853
|
}
|
|
4514
4854
|
}
|
|
4855
|
+
.data-\[state\=open\]\:duration-500 {
|
|
4856
|
+
&[data-state="open"] {
|
|
4857
|
+
--tw-duration: 500ms;
|
|
4858
|
+
transition-duration: 500ms;
|
|
4859
|
+
}
|
|
4860
|
+
}
|
|
4515
4861
|
.data-\[state\=open\]\:fade-in-0 {
|
|
4516
4862
|
&[data-state="open"] {
|
|
4517
4863
|
--tw-enter-opacity: calc(0/100);
|
|
4518
4864
|
--tw-enter-opacity: 0;
|
|
4519
4865
|
}
|
|
4520
4866
|
}
|
|
4867
|
+
.data-\[state\=open\]\:zoom-in-90 {
|
|
4868
|
+
&[data-state="open"] {
|
|
4869
|
+
--tw-enter-scale: calc(90*1%);
|
|
4870
|
+
--tw-enter-scale: .9;
|
|
4871
|
+
}
|
|
4872
|
+
}
|
|
4521
4873
|
.data-\[state\=open\]\:zoom-in-95 {
|
|
4522
4874
|
&[data-state="open"] {
|
|
4523
4875
|
--tw-enter-scale: calc(95*1%);
|
|
4524
4876
|
--tw-enter-scale: .95;
|
|
4525
4877
|
}
|
|
4526
4878
|
}
|
|
4879
|
+
.data-\[state\=open\]\:slide-in-from-bottom {
|
|
4880
|
+
&[data-state="open"] {
|
|
4881
|
+
--tw-enter-translate-y: 100%;
|
|
4882
|
+
}
|
|
4883
|
+
}
|
|
4884
|
+
.data-\[state\=open\]\:slide-in-from-left {
|
|
4885
|
+
&[data-state="open"] {
|
|
4886
|
+
--tw-enter-translate-x: -100%;
|
|
4887
|
+
}
|
|
4888
|
+
}
|
|
4889
|
+
.data-\[state\=open\]\:slide-in-from-right {
|
|
4890
|
+
&[data-state="open"] {
|
|
4891
|
+
--tw-enter-translate-x: 100%;
|
|
4892
|
+
}
|
|
4893
|
+
}
|
|
4894
|
+
.data-\[state\=open\]\:slide-in-from-top {
|
|
4895
|
+
&[data-state="open"] {
|
|
4896
|
+
--tw-enter-translate-y: -100%;
|
|
4897
|
+
}
|
|
4898
|
+
}
|
|
4899
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=open\]\:animate-in {
|
|
4900
|
+
&:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
4901
|
+
&[data-state="open"] {
|
|
4902
|
+
animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
4903
|
+
}
|
|
4904
|
+
}
|
|
4905
|
+
}
|
|
4906
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=open\]\:fade-in-0 {
|
|
4907
|
+
&:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
4908
|
+
&[data-state="open"] {
|
|
4909
|
+
--tw-enter-opacity: calc(0/100);
|
|
4910
|
+
--tw-enter-opacity: 0;
|
|
4911
|
+
}
|
|
4912
|
+
}
|
|
4913
|
+
}
|
|
4914
|
+
.group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=open\]\:zoom-in-95 {
|
|
4915
|
+
&:is(:where(.group\/navigation-menu)[data-viewport="false"] *) {
|
|
4916
|
+
&[data-state="open"] {
|
|
4917
|
+
--tw-enter-scale: calc(95*1%);
|
|
4918
|
+
--tw-enter-scale: .95;
|
|
4919
|
+
}
|
|
4920
|
+
}
|
|
4921
|
+
}
|
|
4922
|
+
.data-\[state\=open\]\:hover\:bg-accent {
|
|
4923
|
+
&[data-state="open"] {
|
|
4924
|
+
&:hover {
|
|
4925
|
+
@media (hover: hover) {
|
|
4926
|
+
background-color: var(--accent);
|
|
4927
|
+
}
|
|
4928
|
+
}
|
|
4929
|
+
}
|
|
4930
|
+
}
|
|
4931
|
+
.data-\[state\=open\]\:focus\:bg-accent {
|
|
4932
|
+
&[data-state="open"] {
|
|
4933
|
+
&:focus {
|
|
4934
|
+
background-color: var(--accent);
|
|
4935
|
+
}
|
|
4936
|
+
}
|
|
4937
|
+
}
|
|
4527
4938
|
.data-\[state\=selected\]\:bg-gray-50 {
|
|
4528
4939
|
&[data-state="selected"] {
|
|
4529
4940
|
background-color: #fafafa;
|
|
@@ -4546,6 +4957,38 @@
|
|
|
4546
4957
|
background-color: var(--input);
|
|
4547
4958
|
}
|
|
4548
4959
|
}
|
|
4960
|
+
.data-\[state\=visible\]\:animate-in {
|
|
4961
|
+
&[data-state="visible"] {
|
|
4962
|
+
animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
|
|
4963
|
+
}
|
|
4964
|
+
}
|
|
4965
|
+
.data-\[state\=visible\]\:fade-in {
|
|
4966
|
+
&[data-state="visible"] {
|
|
4967
|
+
--tw-enter-opacity: 0;
|
|
4968
|
+
}
|
|
4969
|
+
}
|
|
4970
|
+
.data-\[variant\=destructive\]\:text-destructive {
|
|
4971
|
+
&[data-variant="destructive"] {
|
|
4972
|
+
color: var(--destructive);
|
|
4973
|
+
}
|
|
4974
|
+
}
|
|
4975
|
+
.data-\[variant\=destructive\]\:focus\:bg-destructive\/10 {
|
|
4976
|
+
&[data-variant="destructive"] {
|
|
4977
|
+
&:focus {
|
|
4978
|
+
background-color: var(--destructive);
|
|
4979
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4980
|
+
background-color: color-mix(in oklab, var(--destructive) 10%, transparent);
|
|
4981
|
+
}
|
|
4982
|
+
}
|
|
4983
|
+
}
|
|
4984
|
+
}
|
|
4985
|
+
.data-\[variant\=destructive\]\:focus\:text-destructive {
|
|
4986
|
+
&[data-variant="destructive"] {
|
|
4987
|
+
&:focus {
|
|
4988
|
+
color: var(--destructive);
|
|
4989
|
+
}
|
|
4990
|
+
}
|
|
4991
|
+
}
|
|
4549
4992
|
.max-sm\:hidden {
|
|
4550
4993
|
@media (width < 40rem) {
|
|
4551
4994
|
display: none;
|
|
@@ -4566,6 +5009,11 @@
|
|
|
4566
5009
|
grid-column: span 2 / span 2;
|
|
4567
5010
|
}
|
|
4568
5011
|
}
|
|
5012
|
+
.sm\:mt-4 {
|
|
5013
|
+
@media (width >= 40rem) {
|
|
5014
|
+
margin-top: calc(var(--spacing) * 4);
|
|
5015
|
+
}
|
|
5016
|
+
}
|
|
4569
5017
|
.sm\:aspect-square {
|
|
4570
5018
|
@media (width >= 40rem) {
|
|
4571
5019
|
aspect-ratio: 1 / 1;
|
|
@@ -4596,6 +5044,11 @@
|
|
|
4596
5044
|
width: calc(var(--spacing) * 16);
|
|
4597
5045
|
}
|
|
4598
5046
|
}
|
|
5047
|
+
.sm\:w-\[400px\] {
|
|
5048
|
+
@media (width >= 40rem) {
|
|
5049
|
+
width: 400px;
|
|
5050
|
+
}
|
|
5051
|
+
}
|
|
4599
5052
|
.sm\:w-lg {
|
|
4600
5053
|
@media (width >= 40rem) {
|
|
4601
5054
|
width: var(--container-lg);
|
|
@@ -4611,6 +5064,11 @@
|
|
|
4611
5064
|
max-width: var(--container-lg);
|
|
4612
5065
|
}
|
|
4613
5066
|
}
|
|
5067
|
+
.sm\:max-w-sm {
|
|
5068
|
+
@media (width >= 40rem) {
|
|
5069
|
+
max-width: var(--container-sm);
|
|
5070
|
+
}
|
|
5071
|
+
}
|
|
4614
5072
|
.sm\:grid-cols-2 {
|
|
4615
5073
|
@media (width >= 40rem) {
|
|
4616
5074
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
@@ -4686,6 +5144,11 @@
|
|
|
4686
5144
|
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
4687
5145
|
}
|
|
4688
5146
|
}
|
|
5147
|
+
.md\:absolute {
|
|
5148
|
+
@media (width >= 48rem) {
|
|
5149
|
+
position: absolute;
|
|
5150
|
+
}
|
|
5151
|
+
}
|
|
4689
5152
|
.md\:line-clamp-2 {
|
|
4690
5153
|
@media (width >= 48rem) {
|
|
4691
5154
|
overflow: hidden;
|
|
@@ -4699,6 +5162,26 @@
|
|
|
4699
5162
|
height: calc(var(--spacing) * 10);
|
|
4700
5163
|
}
|
|
4701
5164
|
}
|
|
5165
|
+
.md\:w-\[400px\] {
|
|
5166
|
+
@media (width >= 48rem) {
|
|
5167
|
+
width: 400px;
|
|
5168
|
+
}
|
|
5169
|
+
}
|
|
5170
|
+
.md\:w-\[500px\] {
|
|
5171
|
+
@media (width >= 48rem) {
|
|
5172
|
+
width: 500px;
|
|
5173
|
+
}
|
|
5174
|
+
}
|
|
5175
|
+
.md\:w-\[var\(--radix-navigation-menu-viewport-width\)\] {
|
|
5176
|
+
@media (width >= 48rem) {
|
|
5177
|
+
width: var(--radix-navigation-menu-viewport-width);
|
|
5178
|
+
}
|
|
5179
|
+
}
|
|
5180
|
+
.md\:w-auto {
|
|
5181
|
+
@media (width >= 48rem) {
|
|
5182
|
+
width: auto;
|
|
5183
|
+
}
|
|
5184
|
+
}
|
|
4702
5185
|
.md\:grid-cols-2 {
|
|
4703
5186
|
@media (width >= 48rem) {
|
|
4704
5187
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
@@ -4734,6 +5217,11 @@
|
|
|
4734
5217
|
gap: calc(var(--spacing) * 4);
|
|
4735
5218
|
}
|
|
4736
5219
|
}
|
|
5220
|
+
.md\:pl-2 {
|
|
5221
|
+
@media (width >= 48rem) {
|
|
5222
|
+
padding-left: calc(var(--spacing) * 2);
|
|
5223
|
+
}
|
|
5224
|
+
}
|
|
4737
5225
|
.md\:\!text-sm {
|
|
4738
5226
|
@media (width >= 48rem) {
|
|
4739
5227
|
font-size: var(--text-sm) !important;
|
|
@@ -4745,11 +5233,26 @@
|
|
|
4745
5233
|
height: calc(var(--spacing) * 12);
|
|
4746
5234
|
}
|
|
4747
5235
|
}
|
|
5236
|
+
.lg\:w-\[500px\] {
|
|
5237
|
+
@media (width >= 64rem) {
|
|
5238
|
+
width: 500px;
|
|
5239
|
+
}
|
|
5240
|
+
}
|
|
5241
|
+
.lg\:w-\[600px\] {
|
|
5242
|
+
@media (width >= 64rem) {
|
|
5243
|
+
width: 600px;
|
|
5244
|
+
}
|
|
5245
|
+
}
|
|
4748
5246
|
.lg\:grid-cols-3 {
|
|
4749
5247
|
@media (width >= 64rem) {
|
|
4750
5248
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
4751
5249
|
}
|
|
4752
5250
|
}
|
|
5251
|
+
.lg\:grid-cols-\[\.75fr_1fr\] {
|
|
5252
|
+
@media (width >= 64rem) {
|
|
5253
|
+
grid-template-columns: .75fr 1fr;
|
|
5254
|
+
}
|
|
5255
|
+
}
|
|
4753
5256
|
.lg\:\!text-base {
|
|
4754
5257
|
@media (width >= 64rem) {
|
|
4755
5258
|
font-size: var(--text-base) !important;
|
|
@@ -4817,6 +5320,18 @@
|
|
|
4817
5320
|
}
|
|
4818
5321
|
}
|
|
4819
5322
|
}
|
|
5323
|
+
.dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/20 {
|
|
5324
|
+
&:is(.dark *) {
|
|
5325
|
+
&[data-variant="destructive"] {
|
|
5326
|
+
&:focus {
|
|
5327
|
+
background-color: var(--destructive);
|
|
5328
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
5329
|
+
background-color: color-mix(in oklab, var(--destructive) 20%, transparent);
|
|
5330
|
+
}
|
|
5331
|
+
}
|
|
5332
|
+
}
|
|
5333
|
+
}
|
|
5334
|
+
}
|
|
4820
5335
|
.\[\&_\[cmdk-group-heading\]\]\:px-2 {
|
|
4821
5336
|
& [cmdk-group-heading] {
|
|
4822
5337
|
padding-inline: calc(var(--spacing) * 2);
|
|
@@ -5126,6 +5641,15 @@
|
|
|
5126
5641
|
}
|
|
5127
5642
|
}
|
|
5128
5643
|
}
|
|
5644
|
+
.data-\[variant\=destructive\]\:\*\:\[svg\]\:\!text-destructive {
|
|
5645
|
+
&[data-variant="destructive"] {
|
|
5646
|
+
:is(& > *) {
|
|
5647
|
+
&:is(svg) {
|
|
5648
|
+
color: var(--destructive) !important;
|
|
5649
|
+
}
|
|
5650
|
+
}
|
|
5651
|
+
}
|
|
5652
|
+
}
|
|
5129
5653
|
.\[\&\:last-child\[data-selected\=true\]_button\]\:rounded-r-sm {
|
|
5130
5654
|
&:last-child[data-selected=true] button {
|
|
5131
5655
|
border-top-right-radius: var(--radius-sm);
|