@kodiak-finance/orderly-ui 2.8.33 → 2.9.0-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +515 -246
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +490 -175
- package/dist/index.d.ts +490 -175
- package/dist/index.js +1446 -891
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1258 -710
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +3 -3
- package/src/tailwind/index.ts +1 -1
- package/src/tailwind/theme/darkTheme.ts +109 -0
- package/src/tailwind/theme/index.ts +2 -0
- package/src/tailwind/theme/lightTheme.ts +108 -0
- package/tailwind.config.js +33 -12
- package/src/tailwind/theme.ts +0 -102
package/dist/index.css
CHANGED
|
@@ -373,6 +373,8 @@ video {
|
|
|
373
373
|
--oui-color-base-10: 14 13 18;
|
|
374
374
|
--oui-color-base-foreground: 255 255 255;
|
|
375
375
|
--oui-color-line: 255 255 255;
|
|
376
|
+
--oui-color-base-static: 255 255 255;
|
|
377
|
+
--oui-color-base-static-contrast: 0 0 0;
|
|
376
378
|
--oui-color-trading-loss: 245 97 139;
|
|
377
379
|
--oui-color-trading-loss-contrast: 255 255 255;
|
|
378
380
|
--oui-color-trading-profit: 41 233 169;
|
|
@@ -555,6 +557,9 @@ body {
|
|
|
555
557
|
.-oui-right-\[6px\] {
|
|
556
558
|
right: -6px;
|
|
557
559
|
}
|
|
560
|
+
.-oui-right-px {
|
|
561
|
+
right: -1px;
|
|
562
|
+
}
|
|
558
563
|
.-oui-top-4 {
|
|
559
564
|
top: -1rem;
|
|
560
565
|
}
|
|
@@ -570,6 +575,9 @@ body {
|
|
|
570
575
|
.-oui-top-\[calc\(100vh\/2\)\] {
|
|
571
576
|
top: calc(calc(100vh / 2) * -1);
|
|
572
577
|
}
|
|
578
|
+
.-oui-top-px {
|
|
579
|
+
top: -1px;
|
|
580
|
+
}
|
|
573
581
|
.oui--bottom-12 {
|
|
574
582
|
bottom: -3rem;
|
|
575
583
|
}
|
|
@@ -708,6 +716,12 @@ body {
|
|
|
708
716
|
.oui-top-\[-300px\] {
|
|
709
717
|
top: -300px;
|
|
710
718
|
}
|
|
719
|
+
.oui-top-\[0px\] {
|
|
720
|
+
top: 0px;
|
|
721
|
+
}
|
|
722
|
+
.oui-top-\[100px\] {
|
|
723
|
+
top: 100px;
|
|
724
|
+
}
|
|
711
725
|
.oui-top-\[10px\] {
|
|
712
726
|
top: 10px;
|
|
713
727
|
}
|
|
@@ -792,6 +806,12 @@ body {
|
|
|
792
806
|
.oui-z-auto {
|
|
793
807
|
z-index: auto;
|
|
794
808
|
}
|
|
809
|
+
.oui-order-1 {
|
|
810
|
+
order: 1;
|
|
811
|
+
}
|
|
812
|
+
.oui-order-2 {
|
|
813
|
+
order: 2;
|
|
814
|
+
}
|
|
795
815
|
.oui-col-auto {
|
|
796
816
|
grid-column: auto;
|
|
797
817
|
}
|
|
@@ -822,6 +842,9 @@ body {
|
|
|
822
842
|
.oui-col-span-9 {
|
|
823
843
|
grid-column: span 9 / span 9;
|
|
824
844
|
}
|
|
845
|
+
.oui-col-start-3 {
|
|
846
|
+
grid-column-start: 3;
|
|
847
|
+
}
|
|
825
848
|
.oui-row-auto {
|
|
826
849
|
grid-row: auto;
|
|
827
850
|
}
|
|
@@ -1046,6 +1069,9 @@ body {
|
|
|
1046
1069
|
.oui--ml-4 {
|
|
1047
1070
|
margin-left: -1rem;
|
|
1048
1071
|
}
|
|
1072
|
+
.oui--mt-1 {
|
|
1073
|
+
margin-top: -0.25rem;
|
|
1074
|
+
}
|
|
1049
1075
|
.oui--mt-12 {
|
|
1050
1076
|
margin-top: -3rem;
|
|
1051
1077
|
}
|
|
@@ -1115,6 +1141,9 @@ body {
|
|
|
1115
1141
|
.oui-ml-2 {
|
|
1116
1142
|
margin-left: 0.5rem;
|
|
1117
1143
|
}
|
|
1144
|
+
.oui-ml-2\.5 {
|
|
1145
|
+
margin-left: 0.625rem;
|
|
1146
|
+
}
|
|
1118
1147
|
.oui-ml-3 {
|
|
1119
1148
|
margin-left: 0.75rem;
|
|
1120
1149
|
}
|
|
@@ -1232,6 +1261,9 @@ body {
|
|
|
1232
1261
|
.oui-mt-\[-8px\] {
|
|
1233
1262
|
margin-top: -8px;
|
|
1234
1263
|
}
|
|
1264
|
+
.oui-mt-\[1px\] {
|
|
1265
|
+
margin-top: 1px;
|
|
1266
|
+
}
|
|
1235
1267
|
.oui-mt-\[2px\] {
|
|
1236
1268
|
margin-top: 2px;
|
|
1237
1269
|
}
|
|
@@ -1244,6 +1276,9 @@ body {
|
|
|
1244
1276
|
.oui-mt-\[7px\] {
|
|
1245
1277
|
margin-top: 7px;
|
|
1246
1278
|
}
|
|
1279
|
+
.oui-mt-\[9px\] {
|
|
1280
|
+
margin-top: 9px;
|
|
1281
|
+
}
|
|
1247
1282
|
.oui-mt-auto {
|
|
1248
1283
|
margin-top: auto;
|
|
1249
1284
|
}
|
|
@@ -1355,6 +1390,10 @@ body {
|
|
|
1355
1390
|
width: 20px;
|
|
1356
1391
|
height: 20px;
|
|
1357
1392
|
}
|
|
1393
|
+
.oui-size-\[335px\] {
|
|
1394
|
+
width: 335px;
|
|
1395
|
+
height: 335px;
|
|
1396
|
+
}
|
|
1358
1397
|
.oui-size-\[48px\] {
|
|
1359
1398
|
width: 48px;
|
|
1360
1399
|
height: 48px;
|
|
@@ -1429,6 +1468,9 @@ body {
|
|
|
1429
1468
|
.oui-h-3 {
|
|
1430
1469
|
height: 0.75rem;
|
|
1431
1470
|
}
|
|
1471
|
+
.oui-h-3\.5 {
|
|
1472
|
+
height: 0.875rem;
|
|
1473
|
+
}
|
|
1432
1474
|
.oui-h-4 {
|
|
1433
1475
|
height: 1rem;
|
|
1434
1476
|
}
|
|
@@ -1480,6 +1522,9 @@ body {
|
|
|
1480
1522
|
.oui-h-\[14px\] {
|
|
1481
1523
|
height: 14px;
|
|
1482
1524
|
}
|
|
1525
|
+
.oui-h-\[152px\] {
|
|
1526
|
+
height: 152px;
|
|
1527
|
+
}
|
|
1483
1528
|
.oui-h-\[15px\] {
|
|
1484
1529
|
height: 15px;
|
|
1485
1530
|
}
|
|
@@ -1519,9 +1564,6 @@ body {
|
|
|
1519
1564
|
.oui-h-\[20px\] {
|
|
1520
1565
|
height: 20px;
|
|
1521
1566
|
}
|
|
1522
|
-
.oui-h-\[220px\] {
|
|
1523
|
-
height: 220px;
|
|
1524
|
-
}
|
|
1525
1567
|
.oui-h-\[22px\] {
|
|
1526
1568
|
height: 22px;
|
|
1527
1569
|
}
|
|
@@ -1546,12 +1588,18 @@ body {
|
|
|
1546
1588
|
.oui-h-\[254px\] {
|
|
1547
1589
|
height: 254px;
|
|
1548
1590
|
}
|
|
1591
|
+
.oui-h-\[256px\] {
|
|
1592
|
+
height: 256px;
|
|
1593
|
+
}
|
|
1549
1594
|
.oui-h-\[25px\] {
|
|
1550
1595
|
height: 25px;
|
|
1551
1596
|
}
|
|
1552
1597
|
.oui-h-\[26px\] {
|
|
1553
1598
|
height: 26px;
|
|
1554
1599
|
}
|
|
1600
|
+
.oui-h-\[276px\] {
|
|
1601
|
+
height: 276px;
|
|
1602
|
+
}
|
|
1555
1603
|
.oui-h-\[28px\] {
|
|
1556
1604
|
height: 28px;
|
|
1557
1605
|
}
|
|
@@ -1561,6 +1609,9 @@ body {
|
|
|
1561
1609
|
.oui-h-\[300px\] {
|
|
1562
1610
|
height: 300px;
|
|
1563
1611
|
}
|
|
1612
|
+
.oui-h-\[308px\] {
|
|
1613
|
+
height: 308px;
|
|
1614
|
+
}
|
|
1564
1615
|
.oui-h-\[30px\] {
|
|
1565
1616
|
height: 30px;
|
|
1566
1617
|
}
|
|
@@ -1864,12 +1915,12 @@ body {
|
|
|
1864
1915
|
.oui-min-h-\[48px\] {
|
|
1865
1916
|
min-height: 48px;
|
|
1866
1917
|
}
|
|
1918
|
+
.oui-min-h-\[4px\] {
|
|
1919
|
+
min-height: 4px;
|
|
1920
|
+
}
|
|
1867
1921
|
.oui-min-h-\[50px\] {
|
|
1868
1922
|
min-height: 50px;
|
|
1869
1923
|
}
|
|
1870
|
-
.oui-min-h-\[54px\] {
|
|
1871
|
-
min-height: 54px;
|
|
1872
|
-
}
|
|
1873
1924
|
.oui-min-h-\[56px\] {
|
|
1874
1925
|
min-height: 56px;
|
|
1875
1926
|
}
|
|
@@ -1891,9 +1942,15 @@ body {
|
|
|
1891
1942
|
.\!oui-w-\[2px\] {
|
|
1892
1943
|
width: 2px !important;
|
|
1893
1944
|
}
|
|
1945
|
+
.\!oui-w-\[372px\] {
|
|
1946
|
+
width: 372px !important;
|
|
1947
|
+
}
|
|
1894
1948
|
.\!oui-w-\[90\%\] {
|
|
1895
1949
|
width: 90% !important;
|
|
1896
1950
|
}
|
|
1951
|
+
.oui-w-0 {
|
|
1952
|
+
width: 0px;
|
|
1953
|
+
}
|
|
1897
1954
|
.oui-w-1 {
|
|
1898
1955
|
width: 0.25rem;
|
|
1899
1956
|
}
|
|
@@ -2017,6 +2074,9 @@ body {
|
|
|
2017
2074
|
.oui-w-\[18px\] {
|
|
2018
2075
|
width: 18px;
|
|
2019
2076
|
}
|
|
2077
|
+
.oui-w-\[190px\] {
|
|
2078
|
+
width: 190px;
|
|
2079
|
+
}
|
|
2020
2080
|
.oui-w-\[1px\] {
|
|
2021
2081
|
width: 1px;
|
|
2022
2082
|
}
|
|
@@ -2026,9 +2086,6 @@ body {
|
|
|
2026
2086
|
.oui-w-\[20px\] {
|
|
2027
2087
|
width: 20px;
|
|
2028
2088
|
}
|
|
2029
|
-
.oui-w-\[220px\] {
|
|
2030
|
-
width: 220px;
|
|
2031
|
-
}
|
|
2032
2089
|
.oui-w-\[225px\] {
|
|
2033
2090
|
width: 225px;
|
|
2034
2091
|
}
|
|
@@ -2038,6 +2095,9 @@ body {
|
|
|
2038
2095
|
.oui-w-\[240px\] {
|
|
2039
2096
|
width: 240px;
|
|
2040
2097
|
}
|
|
2098
|
+
.oui-w-\[256px\] {
|
|
2099
|
+
width: 256px;
|
|
2100
|
+
}
|
|
2041
2101
|
.oui-w-\[260px\] {
|
|
2042
2102
|
width: 260px;
|
|
2043
2103
|
}
|
|
@@ -2074,9 +2134,15 @@ body {
|
|
|
2074
2134
|
.oui-w-\[360px\] {
|
|
2075
2135
|
width: 360px;
|
|
2076
2136
|
}
|
|
2137
|
+
.oui-w-\[368px\] {
|
|
2138
|
+
width: 368px;
|
|
2139
|
+
}
|
|
2077
2140
|
.oui-w-\[36px\] {
|
|
2078
2141
|
width: 36px;
|
|
2079
2142
|
}
|
|
2143
|
+
.oui-w-\[378px\] {
|
|
2144
|
+
width: 378px;
|
|
2145
|
+
}
|
|
2080
2146
|
.oui-w-\[420px\] {
|
|
2081
2147
|
width: 420px;
|
|
2082
2148
|
}
|
|
@@ -2249,6 +2315,9 @@ body {
|
|
|
2249
2315
|
.oui-min-w-\[var\(--radix-select-trigger-width\)\] {
|
|
2250
2316
|
min-width: var(--radix-select-trigger-width);
|
|
2251
2317
|
}
|
|
2318
|
+
.\!oui-max-w-\[372px\] {
|
|
2319
|
+
max-width: 372px !important;
|
|
2320
|
+
}
|
|
2252
2321
|
.\!oui-max-w-\[624px\] {
|
|
2253
2322
|
max-width: 624px !important;
|
|
2254
2323
|
}
|
|
@@ -2658,6 +2727,9 @@ body {
|
|
|
2658
2727
|
.oui-grid-cols-\[4fr\,6fr\] {
|
|
2659
2728
|
grid-template-columns: 4fr 6fr;
|
|
2660
2729
|
}
|
|
2730
|
+
.oui-grid-cols-\[6fr\,4fr\] {
|
|
2731
|
+
grid-template-columns: 6fr 4fr;
|
|
2732
|
+
}
|
|
2661
2733
|
.oui-grid-cols-none {
|
|
2662
2734
|
grid-template-columns: none;
|
|
2663
2735
|
}
|
|
@@ -3137,6 +3209,10 @@ body {
|
|
|
3137
3209
|
border-top-left-radius: var(--oui-rounded, 0.25rem);
|
|
3138
3210
|
border-bottom-left-radius: var(--oui-rounded, 0.25rem);
|
|
3139
3211
|
}
|
|
3212
|
+
.oui-rounded-l-full {
|
|
3213
|
+
border-top-left-radius: var(--oui-rounded-full, 9999px);
|
|
3214
|
+
border-bottom-left-radius: var(--oui-rounded-full, 9999px);
|
|
3215
|
+
}
|
|
3140
3216
|
.oui-rounded-l-lg {
|
|
3141
3217
|
border-top-left-radius: var(--oui-rounded-lg, 0.5rem);
|
|
3142
3218
|
border-bottom-left-radius: var(--oui-rounded-lg, 0.5rem);
|
|
@@ -3145,6 +3221,10 @@ body {
|
|
|
3145
3221
|
border-top-right-radius: var(--oui-rounded, 0.25rem);
|
|
3146
3222
|
border-bottom-right-radius: var(--oui-rounded, 0.25rem);
|
|
3147
3223
|
}
|
|
3224
|
+
.oui-rounded-r-full {
|
|
3225
|
+
border-top-right-radius: var(--oui-rounded-full, 9999px);
|
|
3226
|
+
border-bottom-right-radius: var(--oui-rounded-full, 9999px);
|
|
3227
|
+
}
|
|
3148
3228
|
.oui-rounded-r-lg {
|
|
3149
3229
|
border-top-right-radius: var(--oui-rounded-lg, 0.5rem);
|
|
3150
3230
|
border-bottom-right-radius: var(--oui-rounded-lg, 0.5rem);
|
|
@@ -3177,6 +3257,9 @@ body {
|
|
|
3177
3257
|
.oui-rounded-bl-\[6px\] {
|
|
3178
3258
|
border-bottom-left-radius: 6px;
|
|
3179
3259
|
}
|
|
3260
|
+
.oui-rounded-bl-md {
|
|
3261
|
+
border-bottom-left-radius: var(--oui-rounded-md, 0.375rem);
|
|
3262
|
+
}
|
|
3180
3263
|
.oui-rounded-bl-xl {
|
|
3181
3264
|
border-bottom-left-radius: var(--oui-rounded-xl, 0.75rem);
|
|
3182
3265
|
}
|
|
@@ -3204,6 +3287,9 @@ body {
|
|
|
3204
3287
|
.oui-rounded-tr-\[10px\] {
|
|
3205
3288
|
border-top-right-radius: 10px;
|
|
3206
3289
|
}
|
|
3290
|
+
.oui-rounded-tr-md {
|
|
3291
|
+
border-top-right-radius: var(--oui-rounded-md, 0.375rem);
|
|
3292
|
+
}
|
|
3207
3293
|
.\!oui-border {
|
|
3208
3294
|
border-width: 1px !important;
|
|
3209
3295
|
}
|
|
@@ -3213,6 +3299,9 @@ body {
|
|
|
3213
3299
|
.oui-border-0 {
|
|
3214
3300
|
border-width: 0px;
|
|
3215
3301
|
}
|
|
3302
|
+
.oui-border-4 {
|
|
3303
|
+
border-width: 4px;
|
|
3304
|
+
}
|
|
3216
3305
|
.oui-border-\[0\.5px\] {
|
|
3217
3306
|
border-width: 0.5px;
|
|
3218
3307
|
}
|
|
@@ -3272,17 +3361,13 @@ body {
|
|
|
3272
3361
|
--tw-border-opacity: 1 !important;
|
|
3273
3362
|
border-color: rgb(var(--oui-color-primary-light) / var(--tw-border-opacity, 1)) !important;
|
|
3274
3363
|
}
|
|
3275
|
-
.oui-border-\[\#
|
|
3364
|
+
.oui-border-\[\#38e2fe\] {
|
|
3276
3365
|
--tw-border-opacity: 1;
|
|
3277
3366
|
border-color: rgb(56 226 254 / var(--tw-border-opacity, 1));
|
|
3278
3367
|
}
|
|
3279
|
-
.oui-border-\[\#
|
|
3280
|
-
--tw-border-opacity: 1;
|
|
3281
|
-
border-color: rgb(185 209 255 / var(--tw-border-opacity, 1));
|
|
3282
|
-
}
|
|
3283
|
-
.oui-border-\[\#faedff\] {
|
|
3368
|
+
.oui-border-\[\#d9d9d9\] {
|
|
3284
3369
|
--tw-border-opacity: 1;
|
|
3285
|
-
border-color: rgb(
|
|
3370
|
+
border-color: rgb(217 217 217 / var(--tw-border-opacity, 1));
|
|
3286
3371
|
}
|
|
3287
3372
|
.oui-border-\[rgb\(var\(--oui-gradient-brand-start\)\)\] {
|
|
3288
3373
|
border-color: rgb(var(--oui-gradient-brand-start));
|
|
@@ -3342,6 +3427,9 @@ body {
|
|
|
3342
3427
|
.oui-border-base-contrast\/\[0\.12\] {
|
|
3343
3428
|
border-color: rgb(var(--oui-color-base-foreground) / 0.12);
|
|
3344
3429
|
}
|
|
3430
|
+
.oui-border-base-static-contrast-20 {
|
|
3431
|
+
border-color: rgb(var(--oui-color-base-static-contrast) / 0.2);
|
|
3432
|
+
}
|
|
3345
3433
|
.oui-border-danger {
|
|
3346
3434
|
--tw-border-opacity: 1;
|
|
3347
3435
|
border-color: rgb(var(--oui-color-danger) / var(--tw-border-opacity, 1));
|
|
@@ -3353,6 +3441,9 @@ body {
|
|
|
3353
3441
|
.oui-border-line {
|
|
3354
3442
|
border-color: rgb(var(--oui-color-line, 255 255 255) / 0.08);
|
|
3355
3443
|
}
|
|
3444
|
+
.oui-border-line-10 {
|
|
3445
|
+
border-color: rgb(var(--oui-color-line, 255 255 255) / 0.10);
|
|
3446
|
+
}
|
|
3356
3447
|
.oui-border-line-12 {
|
|
3357
3448
|
border-color: rgb(var(--oui-color-line, 255 255 255) / 0.12);
|
|
3358
3449
|
}
|
|
@@ -3365,6 +3456,10 @@ body {
|
|
|
3365
3456
|
.oui-border-line-6 {
|
|
3366
3457
|
border-color: rgb(var(--oui-color-line, 255 255 255) / 0.06);
|
|
3367
3458
|
}
|
|
3459
|
+
.oui-border-link-light {
|
|
3460
|
+
--tw-border-opacity: 1;
|
|
3461
|
+
border-color: rgb(var(--oui-color-link-light) / var(--tw-border-opacity, 1));
|
|
3462
|
+
}
|
|
3368
3463
|
.oui-border-primary {
|
|
3369
3464
|
--tw-border-opacity: 1;
|
|
3370
3465
|
border-color: rgb(var(--oui-color-primary) / var(--tw-border-opacity, 1));
|
|
@@ -3400,15 +3495,9 @@ body {
|
|
|
3400
3495
|
--tw-border-opacity: 1;
|
|
3401
3496
|
border-color: rgb(var(--oui-color-warning-light) / var(--tw-border-opacity, 1));
|
|
3402
3497
|
}
|
|
3403
|
-
.oui-border-white\/10 {
|
|
3404
|
-
border-color: rgb(255 255 255 / 0.1);
|
|
3405
|
-
}
|
|
3406
3498
|
.oui-border-white\/\[0\.12\] {
|
|
3407
3499
|
border-color: rgb(255 255 255 / 0.12);
|
|
3408
3500
|
}
|
|
3409
|
-
.oui-border-white\/\[0\.36\] {
|
|
3410
|
-
border-color: rgb(255 255 255 / 0.36);
|
|
3411
|
-
}
|
|
3412
3501
|
.oui-border-b-line-4 {
|
|
3413
3502
|
border-bottom-color: rgb(var(--oui-color-line, 255 255 255) / 0.04);
|
|
3414
3503
|
}
|
|
@@ -3430,14 +3519,6 @@ body {
|
|
|
3430
3519
|
.oui-border-t-transparent {
|
|
3431
3520
|
border-top-color: transparent;
|
|
3432
3521
|
}
|
|
3433
|
-
.\!oui-bg-\[\#131519\] {
|
|
3434
|
-
--tw-bg-opacity: 1 !important;
|
|
3435
|
-
background-color: rgb(19 21 25 / var(--tw-bg-opacity, 1)) !important;
|
|
3436
|
-
}
|
|
3437
|
-
.\!oui-bg-\[\#181C23\] {
|
|
3438
|
-
--tw-bg-opacity: 1 !important;
|
|
3439
|
-
background-color: rgb(24 28 35 / var(--tw-bg-opacity, 1)) !important;
|
|
3440
|
-
}
|
|
3441
3522
|
.\!oui-bg-base-10\/60 {
|
|
3442
3523
|
background-color: rgb(var(--oui-color-base-10) / 0.6) !important;
|
|
3443
3524
|
}
|
|
@@ -3445,6 +3526,13 @@ body {
|
|
|
3445
3526
|
--tw-bg-opacity: 1 !important;
|
|
3446
3527
|
background-color: rgb(var(--oui-color-base-8) / var(--tw-bg-opacity, 1)) !important;
|
|
3447
3528
|
}
|
|
3529
|
+
.\!oui-bg-base-9 {
|
|
3530
|
+
--tw-bg-opacity: 1 !important;
|
|
3531
|
+
background-color: rgb(var(--oui-color-base-9) / var(--tw-bg-opacity, 1)) !important;
|
|
3532
|
+
}
|
|
3533
|
+
.\!oui-bg-black\/10 {
|
|
3534
|
+
background-color: rgb(0 0 0 / 0.1) !important;
|
|
3535
|
+
}
|
|
3448
3536
|
.\!oui-bg-primary-darken {
|
|
3449
3537
|
--tw-bg-opacity: 1 !important;
|
|
3450
3538
|
background-color: rgb(var(--oui-color-primary-darken) / var(--tw-bg-opacity, 1)) !important;
|
|
@@ -3456,53 +3544,21 @@ body {
|
|
|
3456
3544
|
--tw-bg-opacity: 1;
|
|
3457
3545
|
background-color: rgb(0 168 88 / var(--tw-bg-opacity, 1));
|
|
3458
3546
|
}
|
|
3459
|
-
.oui-bg-\[\#00A9DE\] {
|
|
3460
|
-
--tw-bg-opacity: 1;
|
|
3461
|
-
background-color: rgb(0 169 222 / var(--tw-bg-opacity, 1));
|
|
3462
|
-
}
|
|
3463
|
-
.oui-bg-\[\#07080A\] {
|
|
3464
|
-
--tw-bg-opacity: 1;
|
|
3465
|
-
background-color: rgb(7 8 10 / var(--tw-bg-opacity, 1));
|
|
3466
|
-
}
|
|
3467
|
-
.oui-bg-\[\#131519\] {
|
|
3468
|
-
--tw-bg-opacity: 1;
|
|
3469
|
-
background-color: rgb(19 21 25 / var(--tw-bg-opacity, 1));
|
|
3470
|
-
}
|
|
3471
|
-
.oui-bg-\[\#282e3a\] {
|
|
3472
|
-
--tw-bg-opacity: 1;
|
|
3473
|
-
background-color: rgb(40 46 58 / var(--tw-bg-opacity, 1));
|
|
3474
|
-
}
|
|
3475
3547
|
.oui-bg-\[\#283BEE\] {
|
|
3476
3548
|
--tw-bg-opacity: 1;
|
|
3477
3549
|
background-color: rgb(40 59 238 / var(--tw-bg-opacity, 1));
|
|
3478
3550
|
}
|
|
3479
|
-
.oui-bg-\[\#
|
|
3480
|
-
--tw-bg-opacity: 1;
|
|
3481
|
-
background-color: rgb(51 57 72 / var(--tw-bg-opacity, 1));
|
|
3482
|
-
}
|
|
3483
|
-
.oui-bg-\[\#335FFC\] {
|
|
3484
|
-
--tw-bg-opacity: 1;
|
|
3485
|
-
background-color: rgb(51 95 252 / var(--tw-bg-opacity, 1));
|
|
3486
|
-
}
|
|
3487
|
-
.oui-bg-\[\#38E2FE\] {
|
|
3551
|
+
.oui-bg-\[\#38e2fe\] {
|
|
3488
3552
|
--tw-bg-opacity: 1;
|
|
3489
3553
|
background-color: rgb(56 226 254 / var(--tw-bg-opacity, 1));
|
|
3490
3554
|
}
|
|
3491
|
-
.oui-bg-\[\#3D79A9\] {
|
|
3492
|
-
--tw-bg-opacity: 1;
|
|
3493
|
-
background-color: rgb(61 121 169 / var(--tw-bg-opacity, 1));
|
|
3494
|
-
}
|
|
3495
3555
|
.oui-bg-\[\#630EAD\] {
|
|
3496
3556
|
--tw-bg-opacity: 1;
|
|
3497
3557
|
background-color: rgb(99 14 173 / var(--tw-bg-opacity, 1));
|
|
3498
3558
|
}
|
|
3499
|
-
.oui-bg-\[\#
|
|
3559
|
+
.oui-bg-\[\#d9d9d9\] {
|
|
3500
3560
|
--tw-bg-opacity: 1;
|
|
3501
|
-
background-color: rgb(
|
|
3502
|
-
}
|
|
3503
|
-
.oui-bg-\[\#d25f00\] {
|
|
3504
|
-
--tw-bg-opacity: 1;
|
|
3505
|
-
background-color: rgb(210 95 0 / var(--tw-bg-opacity, 1));
|
|
3561
|
+
background-color: rgb(217 217 217 / var(--tw-bg-opacity, 1));
|
|
3506
3562
|
}
|
|
3507
3563
|
.oui-bg-\[\#e9e9eb\] {
|
|
3508
3564
|
--tw-bg-opacity: 1;
|
|
@@ -3512,17 +3568,20 @@ body {
|
|
|
3512
3568
|
--tw-bg-opacity: 1;
|
|
3513
3569
|
background-color: rgb(211 211 211 / var(--tw-bg-opacity, 1));
|
|
3514
3570
|
}
|
|
3571
|
+
.oui-bg-\[rgb\(var\(--oui-gradient-brand-start\)\)\] {
|
|
3572
|
+
background-color: rgb(var(--oui-gradient-brand-start));
|
|
3573
|
+
}
|
|
3515
3574
|
.oui-bg-\[rgba\(0\,0\,0\,0\.48\)\] {
|
|
3516
3575
|
background-color: rgba(0, 0, 0, 0.48);
|
|
3517
3576
|
}
|
|
3518
3577
|
.oui-bg-\[rgba\(232\,136\,0\,0\.15\)\] {
|
|
3519
3578
|
background-color: rgba(232, 136, 0, 0.15);
|
|
3520
3579
|
}
|
|
3521
|
-
.oui-bg-\[rgba\(
|
|
3522
|
-
background-color: rgba(
|
|
3580
|
+
.oui-bg-\[rgba\(var\(--oui-color-warning-darken\)\,0\.1\)\] {
|
|
3581
|
+
background-color: rgba(var(--oui-color-warning-darken), 0.1);
|
|
3523
3582
|
}
|
|
3524
|
-
.oui-bg-\[rgba\(
|
|
3525
|
-
background-color: rgba(
|
|
3583
|
+
.oui-bg-\[rgba\(var\(--oui-color-warning-darken\)\/0\.15\)\] {
|
|
3584
|
+
background-color: rgba(var(--oui-color-warning-darken)/0.15);
|
|
3526
3585
|
}
|
|
3527
3586
|
.oui-bg-\[rgba\(var\(--oui-gradient-brand-start\)\)\] {
|
|
3528
3587
|
background-color: rgba(var(--oui-gradient-brand-start));
|
|
@@ -3576,23 +3635,41 @@ body {
|
|
|
3576
3635
|
.oui-bg-base-contrast-12 {
|
|
3577
3636
|
background-color: rgb(var(--oui-color-base-foreground) / 0.12);
|
|
3578
3637
|
}
|
|
3638
|
+
.oui-bg-base-contrast-16 {
|
|
3639
|
+
background-color: rgb(var(--oui-color-base-foreground) / 0.16);
|
|
3640
|
+
}
|
|
3579
3641
|
.oui-bg-base-contrast-20 {
|
|
3580
3642
|
background-color: rgb(var(--oui-color-base-foreground) / 0.2);
|
|
3581
3643
|
}
|
|
3644
|
+
.oui-bg-base-contrast-30 {
|
|
3645
|
+
background-color: rgb(var(--oui-color-base-foreground) / 0.30);
|
|
3646
|
+
}
|
|
3582
3647
|
.oui-bg-base-contrast-36 {
|
|
3583
3648
|
background-color: rgb(var(--oui-color-base-foreground) / 0.36);
|
|
3584
3649
|
}
|
|
3650
|
+
.oui-bg-base-contrast-4 {
|
|
3651
|
+
background-color: rgb(var(--oui-color-base-foreground) / 0.04);
|
|
3652
|
+
}
|
|
3653
|
+
.oui-bg-base-contrast-54 {
|
|
3654
|
+
background-color: rgb(var(--oui-color-base-foreground) / 0.54);
|
|
3655
|
+
}
|
|
3656
|
+
.oui-bg-base-contrast-6 {
|
|
3657
|
+
background-color: rgb(var(--oui-color-base-foreground) / 0.06);
|
|
3658
|
+
}
|
|
3659
|
+
.oui-bg-base-contrast-8 {
|
|
3660
|
+
background-color: rgb(var(--oui-color-base-foreground) / 0.08);
|
|
3661
|
+
}
|
|
3585
3662
|
.oui-bg-base-contrast-80 {
|
|
3586
3663
|
background-color: rgb(var(--oui-color-base-foreground) / 0.80);
|
|
3587
3664
|
}
|
|
3588
|
-
.oui-bg-
|
|
3589
|
-
background-color: rgb(
|
|
3665
|
+
.oui-bg-base-static {
|
|
3666
|
+
background-color: rgb(var(--oui-color-base-static) / 0.98);
|
|
3590
3667
|
}
|
|
3591
|
-
.oui-bg-
|
|
3592
|
-
background-color: rgb(
|
|
3668
|
+
.oui-bg-base-static-contrast\/10 {
|
|
3669
|
+
background-color: rgb(var(--oui-color-base-static-contrast) / 0.1);
|
|
3593
3670
|
}
|
|
3594
|
-
.oui-bg-black
|
|
3595
|
-
background-color: rgb(0 0 0 / 0.
|
|
3671
|
+
.oui-bg-black\/80 {
|
|
3672
|
+
background-color: rgb(0 0 0 / 0.8);
|
|
3596
3673
|
}
|
|
3597
3674
|
.oui-bg-danger {
|
|
3598
3675
|
--tw-bg-opacity: 1;
|
|
@@ -3653,6 +3730,10 @@ body {
|
|
|
3653
3730
|
--tw-bg-opacity: 1;
|
|
3654
3731
|
background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
|
|
3655
3732
|
}
|
|
3733
|
+
.oui-bg-secondary {
|
|
3734
|
+
--tw-bg-opacity: 1;
|
|
3735
|
+
background-color: rgb(var(--oui-color-secondary) / var(--tw-bg-opacity, 1));
|
|
3736
|
+
}
|
|
3656
3737
|
.oui-bg-success {
|
|
3657
3738
|
--tw-bg-opacity: 1;
|
|
3658
3739
|
background-color: rgb(var(--oui-color-success) / var(--tw-bg-opacity, 1));
|
|
@@ -3661,6 +3742,9 @@ body {
|
|
|
3661
3742
|
--tw-bg-opacity: 1;
|
|
3662
3743
|
background-color: rgb(var(--oui-color-success-darken) / var(--tw-bg-opacity, 1));
|
|
3663
3744
|
}
|
|
3745
|
+
.oui-bg-success-darken\/30 {
|
|
3746
|
+
background-color: rgb(var(--oui-color-success-darken) / 0.3);
|
|
3747
|
+
}
|
|
3664
3748
|
.oui-bg-success\/15 {
|
|
3665
3749
|
background-color: rgb(var(--oui-color-success) / 0.15);
|
|
3666
3750
|
}
|
|
@@ -3707,80 +3791,56 @@ body {
|
|
|
3707
3791
|
--tw-bg-opacity: 1;
|
|
3708
3792
|
background-color: rgb(var(--oui-color-warning-light) / var(--tw-bg-opacity, 1));
|
|
3709
3793
|
}
|
|
3794
|
+
.oui-bg-warning\/10 {
|
|
3795
|
+
background-color: rgb(var(--oui-color-warning) / 0.1);
|
|
3796
|
+
}
|
|
3797
|
+
.oui-bg-warning\/70 {
|
|
3798
|
+
background-color: rgb(var(--oui-color-warning) / 0.7);
|
|
3799
|
+
}
|
|
3710
3800
|
.oui-bg-white {
|
|
3711
3801
|
--tw-bg-opacity: 1;
|
|
3712
3802
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
3713
3803
|
}
|
|
3714
|
-
.oui-bg-white\/30 {
|
|
3715
|
-
background-color: rgb(255 255 255 / 0.3);
|
|
3716
|
-
}
|
|
3717
3804
|
.oui-bg-white\/80 {
|
|
3718
3805
|
background-color: rgb(255 255 255 / 0.8);
|
|
3719
3806
|
}
|
|
3720
|
-
.oui-bg-
|
|
3721
|
-
background-color: rgb(255 255 255 / .06);
|
|
3722
|
-
}
|
|
3723
|
-
.oui-bg-white\/\[0\.04\] {
|
|
3724
|
-
background-color: rgb(255 255 255 / 0.04);
|
|
3725
|
-
}
|
|
3726
|
-
.oui-bg-white\/\[0\.06\] {
|
|
3727
|
-
background-color: rgb(255 255 255 / 0.06);
|
|
3728
|
-
}
|
|
3729
|
-
.oui-bg-white\/\[0\.08\] {
|
|
3730
|
-
background-color: rgb(255 255 255 / 0.08);
|
|
3731
|
-
}
|
|
3732
|
-
.oui-bg-white\/\[0\.12\] {
|
|
3733
|
-
background-color: rgb(255 255 255 / 0.12);
|
|
3734
|
-
}
|
|
3735
|
-
.oui-bg-white\/\[0\.16\] {
|
|
3736
|
-
background-color: rgb(255 255 255 / 0.16);
|
|
3737
|
-
}
|
|
3738
|
-
.oui-bg-white\/\[0\.2\] {
|
|
3739
|
-
background-color: rgb(255 255 255 / 0.2);
|
|
3740
|
-
}
|
|
3741
|
-
.oui-bg-white\/\[0\.54\] {
|
|
3742
|
-
background-color: rgb(255 255 255 / 0.54);
|
|
3743
|
-
}
|
|
3744
|
-
.oui-bg-white\/\[0\.8\] {
|
|
3745
|
-
background-color: rgb(255 255 255 / 0.8);
|
|
3746
|
-
}
|
|
3747
|
-
.oui-bg-\[linear-gradient\(15deg\,\#27FDFE_0\%\,transparent_30\%\)\] {
|
|
3807
|
+
.oui-bg-\[linear-gradient\(15deg\,rgb\(var\(--oui-color-link\)\)_-11\%\,transparent_30\%\,transparent_77\%\,rgb\(var\(--oui-color-success\)\)_100\%\)\] {
|
|
3748
3808
|
background-image:
|
|
3749
3809
|
linear-gradient(
|
|
3750
3810
|
15deg,
|
|
3751
|
-
|
|
3752
|
-
transparent 30
|
|
3811
|
+
rgb(var(--oui-color-link)) -11%,
|
|
3812
|
+
transparent 30%,
|
|
3813
|
+
transparent 77%,
|
|
3814
|
+
rgb(var(--oui-color-success)) 100%);
|
|
3753
3815
|
}
|
|
3754
|
-
.oui-bg-\[linear-gradient\(15deg
|
|
3816
|
+
.oui-bg-\[linear-gradient\(15deg\,rgb\(var\(--oui-color-primary\)\)_-11\%\,transparent_30\%\,transparent_77\%\,rgb\(var\(--oui-color-danger-darken\)\)_100\%\)\] {
|
|
3755
3817
|
background-image:
|
|
3756
3818
|
linear-gradient(
|
|
3757
3819
|
15deg,
|
|
3758
|
-
|
|
3820
|
+
rgb(var(--oui-color-primary)) -11%,
|
|
3759
3821
|
transparent 30%,
|
|
3760
3822
|
transparent 77%,
|
|
3761
|
-
|
|
3823
|
+
rgb(var(--oui-color-danger-darken)) 100%);
|
|
3762
3824
|
}
|
|
3763
|
-
.oui-bg-\[linear-gradient\(15deg
|
|
3825
|
+
.oui-bg-\[linear-gradient\(15deg\,rgb\(var\(--oui-color-primary-darken\)\)_0\%\,transparent_30\%\)\] {
|
|
3764
3826
|
background-image:
|
|
3765
3827
|
linear-gradient(
|
|
3766
3828
|
15deg,
|
|
3767
|
-
|
|
3829
|
+
rgb(var(--oui-color-primary-darken)) 0%,
|
|
3768
3830
|
transparent 30%);
|
|
3769
3831
|
}
|
|
3770
|
-
.oui-bg-\[linear-gradient\(15deg
|
|
3832
|
+
.oui-bg-\[linear-gradient\(15deg\,rgb\(var\(--oui-color-warning-darken\)\)_0\%\,transparent_30\%\)\] {
|
|
3771
3833
|
background-image:
|
|
3772
3834
|
linear-gradient(
|
|
3773
3835
|
15deg,
|
|
3774
|
-
|
|
3775
|
-
transparent 30
|
|
3776
|
-
transparent 77%,
|
|
3777
|
-
#009A7E 100%);
|
|
3836
|
+
rgb(var(--oui-color-warning-darken)) 0%,
|
|
3837
|
+
transparent 30%);
|
|
3778
3838
|
}
|
|
3779
|
-
.oui-bg-\[linear-gradient\(15deg
|
|
3839
|
+
.oui-bg-\[linear-gradient\(15deg\,rgb\(var\(--oui-gradient-brand-start\)\)_0\%\,transparent_30\%\)\] {
|
|
3780
3840
|
background-image:
|
|
3781
3841
|
linear-gradient(
|
|
3782
3842
|
15deg,
|
|
3783
|
-
|
|
3843
|
+
rgb(var(--oui-gradient-brand-start)) 0%,
|
|
3784
3844
|
transparent 30%);
|
|
3785
3845
|
}
|
|
3786
3846
|
.oui-bg-\[linear-gradient\(270deg\,\#59B0FE_0\%\,\#26FEFE_100\%\)\] {
|
|
@@ -3825,12 +3885,12 @@ body {
|
|
|
3825
3885
|
rgba(255, 255, 255, 0.0225) -2.05%,
|
|
3826
3886
|
rgba(199, 199, 199, 0.45) 100%);
|
|
3827
3887
|
}
|
|
3828
|
-
.oui-bg-\[linear-gradient\(270deg\,rgba\(
|
|
3888
|
+
.oui-bg-\[linear-gradient\(270deg\,rgba\(var\(--oui-gradient-brand-end\)\,0\.10\)_0\%\,rgba\(var\(--oui-gradient-brand-start\)\,0\.10\)_100\%\)\] {
|
|
3829
3889
|
background-image:
|
|
3830
3890
|
linear-gradient(
|
|
3831
3891
|
270deg,
|
|
3832
|
-
rgba(
|
|
3833
|
-
rgba(
|
|
3892
|
+
rgba(var(--oui-gradient-brand-end), 0.10) 0%,
|
|
3893
|
+
rgba(var(--oui-gradient-brand-start), 0.10) 100%);
|
|
3834
3894
|
}
|
|
3835
3895
|
.oui-bg-\[linear-gradient\(90deg\,rgba\(var\(--oui-color-base-9\)_\/_0\)_0\%\,rgba\(var\(--oui-color-base-9\)_\/_1\)_100\%\)\] {
|
|
3836
3896
|
background-image:
|
|
@@ -3851,49 +3911,44 @@ body {
|
|
|
3851
3911
|
.oui-bg-gradient-to-tr {
|
|
3852
3912
|
background-image: linear-gradient(to top right, var(--tw-gradient-stops));
|
|
3853
3913
|
}
|
|
3854
|
-
.oui-from-\[\#
|
|
3855
|
-
--tw-gradient-from: #
|
|
3856
|
-
--tw-gradient-to: rgb(
|
|
3914
|
+
.oui-from-\[\#FF7B00\] {
|
|
3915
|
+
--tw-gradient-from: #FF7B00 var(--tw-gradient-from-position);
|
|
3916
|
+
--tw-gradient-to: rgb(255 123 0 / 0) var(--tw-gradient-to-position);
|
|
3857
3917
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
3858
3918
|
}
|
|
3859
|
-
.oui-from-\[
|
|
3860
|
-
--tw-gradient-from:
|
|
3861
|
-
--tw-gradient-to: rgb(
|
|
3919
|
+
.oui-from-\[rgb\(var\(--oui-gradient-brand-end\)\)\] {
|
|
3920
|
+
--tw-gradient-from: rgb(var(--oui-gradient-brand-end)) var(--tw-gradient-from-position);
|
|
3921
|
+
--tw-gradient-to: rgb(var(--oui-gradient-brand-end) / 0) var(--tw-gradient-to-position);
|
|
3862
3922
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
3863
3923
|
}
|
|
3864
|
-
.oui-from-\[
|
|
3865
|
-
--tw-gradient-from:
|
|
3866
|
-
--tw-gradient-to: rgb(
|
|
3924
|
+
.oui-from-\[rgb\(var\(--oui-gradient-brand-start\)\)\] {
|
|
3925
|
+
--tw-gradient-from: rgb(var(--oui-gradient-brand-start)) var(--tw-gradient-from-position);
|
|
3926
|
+
--tw-gradient-to: rgb(var(--oui-gradient-brand-start) / 0) var(--tw-gradient-to-position);
|
|
3867
3927
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
3868
3928
|
}
|
|
3869
|
-
.oui-from-\[
|
|
3870
|
-
--tw-gradient-from:
|
|
3871
|
-
--tw-gradient-to: rgb(
|
|
3929
|
+
.oui-from-\[rgb\(var\(--oui-gradient-brand-start\)_\/_0\.12\)\] {
|
|
3930
|
+
--tw-gradient-from: rgb(var(--oui-gradient-brand-start) / 0.12) var(--tw-gradient-from-position);
|
|
3931
|
+
--tw-gradient-to: rgb(var(--oui-gradient-brand-start) / 0) var(--tw-gradient-to-position);
|
|
3872
3932
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
3873
3933
|
}
|
|
3874
|
-
.oui-from-\[
|
|
3875
|
-
--tw-gradient-from:
|
|
3876
|
-
--tw-gradient-to: rgb(
|
|
3934
|
+
.oui-from-\[rgb\(var\(--oui-gradient-danger-end\)\)\] {
|
|
3935
|
+
--tw-gradient-from: rgb(var(--oui-gradient-danger-end)) var(--tw-gradient-from-position);
|
|
3936
|
+
--tw-gradient-to: rgb(var(--oui-gradient-danger-end) / 0) var(--tw-gradient-to-position);
|
|
3877
3937
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
3878
3938
|
}
|
|
3879
|
-
.oui-from-\[
|
|
3880
|
-
--tw-gradient-from:
|
|
3881
|
-
--tw-gradient-to: rgb(
|
|
3939
|
+
.oui-from-\[rgb\(var\(--oui-gradient-neutral-start\)\)\] {
|
|
3940
|
+
--tw-gradient-from: rgb(var(--oui-gradient-neutral-start)) var(--tw-gradient-from-position);
|
|
3941
|
+
--tw-gradient-to: rgb(var(--oui-gradient-neutral-start) / 0) var(--tw-gradient-to-position);
|
|
3882
3942
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
3883
3943
|
}
|
|
3884
|
-
.oui-from-\[
|
|
3885
|
-
--tw-gradient-from:
|
|
3886
|
-
--tw-gradient-to: rgb(
|
|
3944
|
+
.oui-from-\[rgb\(var\(--oui-gradient-secondary-end\)\)\] {
|
|
3945
|
+
--tw-gradient-from: rgb(var(--oui-gradient-secondary-end)) var(--tw-gradient-from-position);
|
|
3946
|
+
--tw-gradient-to: rgb(var(--oui-gradient-secondary-end) / 0) var(--tw-gradient-to-position);
|
|
3887
3947
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
3888
3948
|
}
|
|
3889
|
-
.oui-from-\[rgb\(var\(--oui-gradient-
|
|
3890
|
-
--tw-gradient-from: rgb(var(--oui-gradient-
|
|
3891
|
-
--tw-gradient-to: rgb(var(--oui-gradient-
|
|
3892
|
-
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
3893
|
-
}
|
|
3894
|
-
.oui-from-\[rgb\(var\(--oui-gradient-brand-start\)_\/_0\.12\)\] {
|
|
3895
|
-
--tw-gradient-from: rgb(var(--oui-gradient-brand-start) / 0.12) var(--tw-gradient-from-position);
|
|
3896
|
-
--tw-gradient-to: rgb(var(--oui-gradient-brand-start) / 0) var(--tw-gradient-to-position);
|
|
3949
|
+
.oui-from-\[rgb\(var\(--oui-gradient-warning-end\)\)\] {
|
|
3950
|
+
--tw-gradient-from: rgb(var(--oui-gradient-warning-end)) var(--tw-gradient-from-position);
|
|
3951
|
+
--tw-gradient-to: rgb(var(--oui-gradient-warning-end) / 0) var(--tw-gradient-to-position);
|
|
3897
3952
|
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
|
3898
3953
|
}
|
|
3899
3954
|
.oui-from-\[rgba\(var\(--oui-gradient-brand-end\)\/0\)\] {
|
|
@@ -3924,33 +3979,18 @@ body {
|
|
|
3924
3979
|
.oui-from-\[-20\%\] {
|
|
3925
3980
|
--tw-gradient-from-position: -20%;
|
|
3926
3981
|
}
|
|
3927
|
-
.oui-via-\[
|
|
3928
|
-
--tw-gradient-to: rgb(
|
|
3982
|
+
.oui-via-\[rgb\(var\(--oui-color-warning-darken\)\)\] {
|
|
3983
|
+
--tw-gradient-to: rgb(var(--oui-color-warning-darken) / 0) var(--tw-gradient-to-position);
|
|
3929
3984
|
--tw-gradient-stops:
|
|
3930
3985
|
var(--tw-gradient-from),
|
|
3931
|
-
|
|
3986
|
+
rgb(var(--oui-color-warning-darken)) var(--tw-gradient-via-position),
|
|
3932
3987
|
var(--tw-gradient-to);
|
|
3933
3988
|
}
|
|
3934
|
-
.oui-to-\[\#1B1D22\] {
|
|
3935
|
-
--tw-gradient-to: #1B1D22 var(--tw-gradient-to-position);
|
|
3936
|
-
}
|
|
3937
|
-
.oui-to-\[\#26fefe\] {
|
|
3938
|
-
--tw-gradient-to: #26fefe var(--tw-gradient-to-position);
|
|
3939
|
-
}
|
|
3940
3989
|
.oui-to-\[\#FFEA00\] {
|
|
3941
3990
|
--tw-gradient-to: #FFEA00 var(--tw-gradient-to-position);
|
|
3942
3991
|
}
|
|
3943
|
-
.oui-to-\[
|
|
3944
|
-
--tw-gradient-to:
|
|
3945
|
-
}
|
|
3946
|
-
.oui-to-\[\#d92d6b\] {
|
|
3947
|
-
--tw-gradient-to: #d92d6b var(--tw-gradient-to-position);
|
|
3948
|
-
}
|
|
3949
|
-
.oui-to-\[\#ff447c\] {
|
|
3950
|
-
--tw-gradient-to: #ff447c var(--tw-gradient-to-position);
|
|
3951
|
-
}
|
|
3952
|
-
.oui-to-\[\#ffb65d\] {
|
|
3953
|
-
--tw-gradient-to: #ffb65d var(--tw-gradient-to-position);
|
|
3992
|
+
.oui-to-\[rgb\(var\(--oui-color-danger-darken\)\)\] {
|
|
3993
|
+
--tw-gradient-to: rgb(var(--oui-color-danger-darken)) var(--tw-gradient-to-position);
|
|
3954
3994
|
}
|
|
3955
3995
|
.oui-to-\[rgb\(var\(--oui-gradient-brand-end\)\)\] {
|
|
3956
3996
|
--tw-gradient-to: rgb(var(--oui-gradient-brand-end)) var(--tw-gradient-to-position);
|
|
@@ -3958,6 +3998,21 @@ body {
|
|
|
3958
3998
|
.oui-to-\[rgb\(var\(--oui-gradient-brand-end\)_\/_0\.12\)\] {
|
|
3959
3999
|
--tw-gradient-to: rgb(var(--oui-gradient-brand-end) / 0.12) var(--tw-gradient-to-position);
|
|
3960
4000
|
}
|
|
4001
|
+
.oui-to-\[rgb\(var\(--oui-gradient-brand-start\)\)\] {
|
|
4002
|
+
--tw-gradient-to: rgb(var(--oui-gradient-brand-start)) var(--tw-gradient-to-position);
|
|
4003
|
+
}
|
|
4004
|
+
.oui-to-\[rgb\(var\(--oui-gradient-danger-start\)\)\] {
|
|
4005
|
+
--tw-gradient-to: rgb(var(--oui-gradient-danger-start)) var(--tw-gradient-to-position);
|
|
4006
|
+
}
|
|
4007
|
+
.oui-to-\[rgb\(var\(--oui-gradient-neutral-end\)\)\] {
|
|
4008
|
+
--tw-gradient-to: rgb(var(--oui-gradient-neutral-end)) var(--tw-gradient-to-position);
|
|
4009
|
+
}
|
|
4010
|
+
.oui-to-\[rgb\(var\(--oui-gradient-secondary-start\)\)\] {
|
|
4011
|
+
--tw-gradient-to: rgb(var(--oui-gradient-secondary-start)) var(--tw-gradient-to-position);
|
|
4012
|
+
}
|
|
4013
|
+
.oui-to-\[rgb\(var\(--oui-gradient-warning-start\)\)\] {
|
|
4014
|
+
--tw-gradient-to: rgb(var(--oui-gradient-warning-start)) var(--tw-gradient-to-position);
|
|
4015
|
+
}
|
|
3961
4016
|
.oui-to-\[rgba\(var\(--oui-gradient-brand-end\)\)\] {
|
|
3962
4017
|
--tw-gradient-to: rgba(var(--oui-gradient-brand-end)) var(--tw-gradient-to-position);
|
|
3963
4018
|
}
|
|
@@ -4001,9 +4056,6 @@ body {
|
|
|
4001
4056
|
.\!oui-fill-base-6 {
|
|
4002
4057
|
fill: rgb(var(--oui-color-base-6) / 1) !important;
|
|
4003
4058
|
}
|
|
4004
|
-
.oui-fill-\[rgba\(255\,255\,255\,0\.36\)\] {
|
|
4005
|
-
fill: rgba(255, 255, 255, 0.36);
|
|
4006
|
-
}
|
|
4007
4059
|
.oui-fill-base-4 {
|
|
4008
4060
|
fill: rgb(var(--oui-color-base-4) / 1);
|
|
4009
4061
|
}
|
|
@@ -4013,9 +4065,21 @@ body {
|
|
|
4013
4065
|
.oui-fill-base-6 {
|
|
4014
4066
|
fill: rgb(var(--oui-color-base-6) / 1);
|
|
4015
4067
|
}
|
|
4068
|
+
.oui-fill-base-7 {
|
|
4069
|
+
fill: rgb(var(--oui-color-base-7) / 1);
|
|
4070
|
+
}
|
|
4016
4071
|
.oui-fill-base-8 {
|
|
4017
4072
|
fill: rgb(var(--oui-color-base-8) / 1);
|
|
4018
4073
|
}
|
|
4074
|
+
.oui-fill-base-contrast {
|
|
4075
|
+
fill: rgb(var(--oui-color-base-foreground) / 0.98);
|
|
4076
|
+
}
|
|
4077
|
+
.oui-fill-base-contrast-12 {
|
|
4078
|
+
fill: rgb(var(--oui-color-base-foreground) / 0.12);
|
|
4079
|
+
}
|
|
4080
|
+
.oui-fill-base-contrast-16 {
|
|
4081
|
+
fill: rgb(var(--oui-color-base-foreground) / 0.16);
|
|
4082
|
+
}
|
|
4019
4083
|
.oui-fill-base-contrast-20 {
|
|
4020
4084
|
fill: rgb(var(--oui-color-base-foreground) / 0.2);
|
|
4021
4085
|
}
|
|
@@ -4025,6 +4089,12 @@ body {
|
|
|
4025
4089
|
.oui-fill-base-contrast-54 {
|
|
4026
4090
|
fill: rgb(var(--oui-color-base-foreground) / 0.54);
|
|
4027
4091
|
}
|
|
4092
|
+
.oui-fill-base-contrast-6 {
|
|
4093
|
+
fill: rgb(var(--oui-color-base-foreground) / 0.06);
|
|
4094
|
+
}
|
|
4095
|
+
.oui-fill-base-contrast-80 {
|
|
4096
|
+
fill: rgb(var(--oui-color-base-foreground) / 0.80);
|
|
4097
|
+
}
|
|
4028
4098
|
.oui-fill-current {
|
|
4029
4099
|
fill: currentColor;
|
|
4030
4100
|
}
|
|
@@ -4034,6 +4104,12 @@ body {
|
|
|
4034
4104
|
.oui-fill-danger-light {
|
|
4035
4105
|
fill: rgb(var(--oui-color-danger-light) / 1);
|
|
4036
4106
|
}
|
|
4107
|
+
.oui-fill-primary {
|
|
4108
|
+
fill: rgb(var(--oui-color-primary) / 1);
|
|
4109
|
+
}
|
|
4110
|
+
.oui-fill-primary-contrast {
|
|
4111
|
+
fill: rgb(var(--oui-color-primary-contrast) / 1);
|
|
4112
|
+
}
|
|
4037
4113
|
.oui-fill-primary-contrast\/50 {
|
|
4038
4114
|
fill: rgb(var(--oui-color-primary-contrast) / 0.5);
|
|
4039
4115
|
}
|
|
@@ -4046,30 +4122,24 @@ body {
|
|
|
4046
4122
|
.oui-fill-success {
|
|
4047
4123
|
fill: rgb(var(--oui-color-success) / 1);
|
|
4048
4124
|
}
|
|
4125
|
+
.oui-fill-success-darken {
|
|
4126
|
+
fill: rgb(var(--oui-color-success-darken) / 1);
|
|
4127
|
+
}
|
|
4049
4128
|
.oui-fill-success-light {
|
|
4050
4129
|
fill: rgb(var(--oui-color-success-light) / 1);
|
|
4051
4130
|
}
|
|
4052
4131
|
.oui-fill-transparent {
|
|
4053
4132
|
fill: transparent;
|
|
4054
4133
|
}
|
|
4134
|
+
.oui-fill-warning {
|
|
4135
|
+
fill: rgb(var(--oui-color-warning) / 1);
|
|
4136
|
+
}
|
|
4055
4137
|
.oui-fill-warning-darken {
|
|
4056
4138
|
fill: rgb(var(--oui-color-warning-darken) / 1);
|
|
4057
4139
|
}
|
|
4058
4140
|
.oui-fill-warning-light {
|
|
4059
4141
|
fill: rgb(var(--oui-color-warning-light) / 1);
|
|
4060
4142
|
}
|
|
4061
|
-
.oui-fill-white {
|
|
4062
|
-
fill: #fff;
|
|
4063
|
-
}
|
|
4064
|
-
.oui-fill-white\/\[\.36\] {
|
|
4065
|
-
fill: rgb(255 255 255 / .36);
|
|
4066
|
-
}
|
|
4067
|
-
.oui-fill-white\/\[\.54\] {
|
|
4068
|
-
fill: rgb(255 255 255 / .54);
|
|
4069
|
-
}
|
|
4070
|
-
.oui-fill-white\/\[\.98\] {
|
|
4071
|
-
fill: rgb(255 255 255 / .98);
|
|
4072
|
-
}
|
|
4073
4143
|
.oui-object-contain {
|
|
4074
4144
|
-o-object-fit: contain;
|
|
4075
4145
|
object-fit: contain;
|
|
@@ -4146,6 +4216,14 @@ body {
|
|
|
4146
4216
|
padding-left: 0.25rem !important;
|
|
4147
4217
|
padding-right: 0.25rem !important;
|
|
4148
4218
|
}
|
|
4219
|
+
.\!oui-py-0 {
|
|
4220
|
+
padding-top: 0px !important;
|
|
4221
|
+
padding-bottom: 0px !important;
|
|
4222
|
+
}
|
|
4223
|
+
.\!oui-py-12 {
|
|
4224
|
+
padding-top: 3rem !important;
|
|
4225
|
+
padding-bottom: 3rem !important;
|
|
4226
|
+
}
|
|
4149
4227
|
.\!oui-py-\[2px\] {
|
|
4150
4228
|
padding-top: 2px !important;
|
|
4151
4229
|
padding-bottom: 2px !important;
|
|
@@ -4170,6 +4248,10 @@ body {
|
|
|
4170
4248
|
padding-left: 2.5rem;
|
|
4171
4249
|
padding-right: 2.5rem;
|
|
4172
4250
|
}
|
|
4251
|
+
.oui-px-16 {
|
|
4252
|
+
padding-left: 4rem;
|
|
4253
|
+
padding-right: 4rem;
|
|
4254
|
+
}
|
|
4173
4255
|
.oui-px-2 {
|
|
4174
4256
|
padding-left: 0.5rem;
|
|
4175
4257
|
padding-right: 0.5rem;
|
|
@@ -4367,6 +4449,9 @@ body {
|
|
|
4367
4449
|
.oui-pb-2 {
|
|
4368
4450
|
padding-bottom: 0.5rem;
|
|
4369
4451
|
}
|
|
4452
|
+
.oui-pb-24 {
|
|
4453
|
+
padding-bottom: 6rem;
|
|
4454
|
+
}
|
|
4370
4455
|
.oui-pb-3 {
|
|
4371
4456
|
padding-bottom: 0.75rem;
|
|
4372
4457
|
}
|
|
@@ -4391,6 +4476,12 @@ body {
|
|
|
4391
4476
|
.oui-pb-\[5px\] {
|
|
4392
4477
|
padding-bottom: 5px;
|
|
4393
4478
|
}
|
|
4479
|
+
.oui-pb-\[9px\] {
|
|
4480
|
+
padding-bottom: 9px;
|
|
4481
|
+
}
|
|
4482
|
+
.oui-pb-\[calc\(20px\+env\(safe-area-inset-bottom\)\)\] {
|
|
4483
|
+
padding-bottom: calc(20px + env(safe-area-inset-bottom));
|
|
4484
|
+
}
|
|
4394
4485
|
.oui-pb-\[calc\(env\(safe-area-inset-bottom\)\)\] {
|
|
4395
4486
|
padding-bottom: calc(env(safe-area-inset-bottom));
|
|
4396
4487
|
}
|
|
@@ -4496,6 +4587,9 @@ body {
|
|
|
4496
4587
|
.oui-pt-10 {
|
|
4497
4588
|
padding-top: 2.5rem;
|
|
4498
4589
|
}
|
|
4590
|
+
.oui-pt-16 {
|
|
4591
|
+
padding-top: 4rem;
|
|
4592
|
+
}
|
|
4499
4593
|
.oui-pt-2 {
|
|
4500
4594
|
padding-top: 0.5rem;
|
|
4501
4595
|
}
|
|
@@ -4535,6 +4629,12 @@ body {
|
|
|
4535
4629
|
.oui-text-right {
|
|
4536
4630
|
text-align: right;
|
|
4537
4631
|
}
|
|
4632
|
+
.\!oui-text-start {
|
|
4633
|
+
text-align: start !important;
|
|
4634
|
+
}
|
|
4635
|
+
.oui-text-start {
|
|
4636
|
+
text-align: start;
|
|
4637
|
+
}
|
|
4538
4638
|
.oui-text-end {
|
|
4539
4639
|
text-align: end;
|
|
4540
4640
|
}
|
|
@@ -4659,6 +4759,15 @@ body {
|
|
|
4659
4759
|
.oui-leading-4 {
|
|
4660
4760
|
line-height: 1rem;
|
|
4661
4761
|
}
|
|
4762
|
+
.oui-leading-5 {
|
|
4763
|
+
line-height: 1.25rem;
|
|
4764
|
+
}
|
|
4765
|
+
.oui-leading-6 {
|
|
4766
|
+
line-height: 1.5rem;
|
|
4767
|
+
}
|
|
4768
|
+
.oui-leading-8 {
|
|
4769
|
+
line-height: 2rem;
|
|
4770
|
+
}
|
|
4662
4771
|
.oui-leading-\[0px\] {
|
|
4663
4772
|
line-height: 0px;
|
|
4664
4773
|
}
|
|
@@ -4722,9 +4831,21 @@ body {
|
|
|
4722
4831
|
.oui-leading-tight {
|
|
4723
4832
|
line-height: 1.25;
|
|
4724
4833
|
}
|
|
4834
|
+
.oui-tracking-\[0\.01em\] {
|
|
4835
|
+
letter-spacing: 0.01em;
|
|
4836
|
+
}
|
|
4837
|
+
.oui-tracking-\[0\.03em\] {
|
|
4838
|
+
letter-spacing: 0.03em;
|
|
4839
|
+
}
|
|
4840
|
+
.oui-tracking-\[0\.48px\] {
|
|
4841
|
+
letter-spacing: 0.48px;
|
|
4842
|
+
}
|
|
4725
4843
|
.oui-tracking-tight {
|
|
4726
4844
|
letter-spacing: -0.025em;
|
|
4727
4845
|
}
|
|
4846
|
+
.oui-tracking-wide {
|
|
4847
|
+
letter-spacing: 0.025em;
|
|
4848
|
+
}
|
|
4728
4849
|
.oui-tracking-widest {
|
|
4729
4850
|
letter-spacing: 0.1em;
|
|
4730
4851
|
}
|
|
@@ -4732,23 +4853,12 @@ body {
|
|
|
4732
4853
|
--tw-text-opacity: 1;
|
|
4733
4854
|
color: rgb(99 102 109 / var(--tw-text-opacity, 1));
|
|
4734
4855
|
}
|
|
4735
|
-
.oui-text-\[\#D25f00\] {
|
|
4736
|
-
--tw-text-opacity: 1;
|
|
4737
|
-
color: rgb(210 95 0 / var(--tw-text-opacity, 1));
|
|
4738
|
-
}
|
|
4739
|
-
.oui-text-\[\#FF7D00\] {
|
|
4740
|
-
--tw-text-opacity: 1;
|
|
4741
|
-
color: rgb(255 125 0 / var(--tw-text-opacity, 1));
|
|
4742
|
-
}
|
|
4743
4856
|
.oui-text-\[rgb\(var\(--oui-gradient-brand-start\)\)\] {
|
|
4744
4857
|
color: rgb(var(--oui-gradient-brand-start));
|
|
4745
4858
|
}
|
|
4746
4859
|
.oui-text-\[rgba\(0\,0\,0\,\.88\)\] {
|
|
4747
4860
|
color: rgba(0, 0, 0, .88);
|
|
4748
4861
|
}
|
|
4749
|
-
.oui-text-\[rgba\(0\,0\,0\,0\.88\)\] {
|
|
4750
|
-
color: rgba(0, 0, 0, 0.88);
|
|
4751
|
-
}
|
|
4752
4862
|
.oui-text-\[rgba\(255\,154\,46\,1\)\] {
|
|
4753
4863
|
color: rgba(255, 154, 46, 1);
|
|
4754
4864
|
}
|
|
@@ -4756,6 +4866,10 @@ body {
|
|
|
4756
4866
|
--tw-text-opacity: 1;
|
|
4757
4867
|
color: rgb(var(--oui-color-base-1) / var(--tw-text-opacity, 1));
|
|
4758
4868
|
}
|
|
4869
|
+
.oui-text-base-10 {
|
|
4870
|
+
--tw-text-opacity: 1;
|
|
4871
|
+
color: rgb(var(--oui-color-base-10) / var(--tw-text-opacity, 1));
|
|
4872
|
+
}
|
|
4759
4873
|
.oui-text-base-5 {
|
|
4760
4874
|
--tw-text-opacity: 1;
|
|
4761
4875
|
color: rgb(var(--oui-color-base-5) / var(--tw-text-opacity, 1));
|
|
@@ -4783,6 +4897,9 @@ body {
|
|
|
4783
4897
|
.oui-text-base-contrast-54 {
|
|
4784
4898
|
color: rgb(var(--oui-color-base-foreground) / 0.54);
|
|
4785
4899
|
}
|
|
4900
|
+
.oui-text-base-contrast-8 {
|
|
4901
|
+
color: rgb(var(--oui-color-base-foreground) / 0.08);
|
|
4902
|
+
}
|
|
4786
4903
|
.oui-text-base-contrast-80 {
|
|
4787
4904
|
color: rgb(var(--oui-color-base-foreground) / 0.80);
|
|
4788
4905
|
}
|
|
@@ -4795,18 +4912,27 @@ body {
|
|
|
4795
4912
|
.oui-text-base-contrast\/60 {
|
|
4796
4913
|
color: rgb(var(--oui-color-base-foreground) / 0.6);
|
|
4797
4914
|
}
|
|
4798
|
-
.oui-text-
|
|
4799
|
-
--
|
|
4800
|
-
|
|
4915
|
+
.oui-text-base-static {
|
|
4916
|
+
color: rgb(var(--oui-color-base-static) / 0.98);
|
|
4917
|
+
}
|
|
4918
|
+
.oui-text-base-static-54 {
|
|
4919
|
+
color: rgb(var(--oui-color-base-static) / 0.54);
|
|
4920
|
+
}
|
|
4921
|
+
.oui-text-base-static-80 {
|
|
4922
|
+
color: rgb(var(--oui-color-base-static) / 0.80);
|
|
4801
4923
|
}
|
|
4802
|
-
.oui-text-
|
|
4803
|
-
color: rgb(
|
|
4924
|
+
.oui-text-base-static-contrast {
|
|
4925
|
+
color: rgb(var(--oui-color-base-static-contrast) / 0.98);
|
|
4804
4926
|
}
|
|
4805
|
-
.oui-text-
|
|
4806
|
-
color: rgb(
|
|
4927
|
+
.oui-text-base-static-contrast-20 {
|
|
4928
|
+
color: rgb(var(--oui-color-base-static-contrast) / 0.2);
|
|
4807
4929
|
}
|
|
4808
|
-
.oui-text-
|
|
4809
|
-
color: rgb(
|
|
4930
|
+
.oui-text-base-static-contrast-80 {
|
|
4931
|
+
color: rgb(var(--oui-color-base-static-contrast) / 0.80);
|
|
4932
|
+
}
|
|
4933
|
+
.oui-text-black {
|
|
4934
|
+
--tw-text-opacity: 1;
|
|
4935
|
+
color: rgb(0 0 0 / var(--tw-text-opacity, 1));
|
|
4810
4936
|
}
|
|
4811
4937
|
.oui-text-current {
|
|
4812
4938
|
color: currentColor;
|
|
@@ -4846,6 +4972,9 @@ body {
|
|
|
4846
4972
|
--tw-text-opacity: 1;
|
|
4847
4973
|
color: rgb(var(--oui-color-primary-contrast) / var(--tw-text-opacity, 1));
|
|
4848
4974
|
}
|
|
4975
|
+
.oui-text-primary-contrast\/80 {
|
|
4976
|
+
color: rgb(var(--oui-color-primary-contrast) / 0.8);
|
|
4977
|
+
}
|
|
4849
4978
|
.oui-text-primary-darken {
|
|
4850
4979
|
--tw-text-opacity: 1;
|
|
4851
4980
|
color: rgb(var(--oui-color-primary-darken) / var(--tw-text-opacity, 1));
|
|
@@ -4865,6 +4994,9 @@ body {
|
|
|
4865
4994
|
--tw-text-opacity: 1;
|
|
4866
4995
|
color: rgb(var(--oui-color-secondary) / var(--tw-text-opacity, 1));
|
|
4867
4996
|
}
|
|
4997
|
+
.oui-text-secondary\/80 {
|
|
4998
|
+
color: rgb(var(--oui-color-secondary) / 0.8);
|
|
4999
|
+
}
|
|
4868
5000
|
.oui-text-secondary\/\[0\.36\] {
|
|
4869
5001
|
color: rgb(var(--oui-color-secondary) / 0.36);
|
|
4870
5002
|
}
|
|
@@ -4880,6 +5012,9 @@ body {
|
|
|
4880
5012
|
--tw-text-opacity: 1;
|
|
4881
5013
|
color: rgb(var(--oui-color-success-darken) / var(--tw-text-opacity, 1));
|
|
4882
5014
|
}
|
|
5015
|
+
.oui-text-success-darken\/50 {
|
|
5016
|
+
color: rgb(var(--oui-color-success-darken) / 0.5);
|
|
5017
|
+
}
|
|
4883
5018
|
.oui-text-success-light {
|
|
4884
5019
|
--tw-text-opacity: 1;
|
|
4885
5020
|
color: rgb(var(--oui-color-success-light) / var(--tw-text-opacity, 1));
|
|
@@ -4931,6 +5066,9 @@ body {
|
|
|
4931
5066
|
.oui-no-underline {
|
|
4932
5067
|
text-decoration-line: none;
|
|
4933
5068
|
}
|
|
5069
|
+
.oui-decoration-base-contrast {
|
|
5070
|
+
text-decoration-color: rgb(var(--oui-color-base-foreground) / 0.98);
|
|
5071
|
+
}
|
|
4934
5072
|
.oui-decoration-base-contrast-36 {
|
|
4935
5073
|
text-decoration-color: rgb(var(--oui-color-base-foreground) / 0.36);
|
|
4936
5074
|
}
|
|
@@ -4943,6 +5081,9 @@ body {
|
|
|
4943
5081
|
.oui-decoration-white\/20 {
|
|
4944
5082
|
text-decoration-color: rgb(255 255 255 / 0.2);
|
|
4945
5083
|
}
|
|
5084
|
+
.oui-decoration-dotted {
|
|
5085
|
+
text-decoration-style: dotted;
|
|
5086
|
+
}
|
|
4946
5087
|
.oui-decoration-dashed {
|
|
4947
5088
|
text-decoration-style: dashed;
|
|
4948
5089
|
}
|
|
@@ -4961,8 +5102,8 @@ body {
|
|
|
4961
5102
|
.oui-placeholder-base-contrast-20::placeholder {
|
|
4962
5103
|
color: rgb(var(--oui-color-base-foreground) / 0.2);
|
|
4963
5104
|
}
|
|
4964
|
-
.oui-caret-\[
|
|
4965
|
-
caret-color:
|
|
5105
|
+
.oui-caret-\[rgb\(var\(--oui-color-tertiary\)\)\] {
|
|
5106
|
+
caret-color: rgb(var(--oui-color-tertiary));
|
|
4966
5107
|
}
|
|
4967
5108
|
.oui-opacity-0 {
|
|
4968
5109
|
opacity: 0;
|
|
@@ -4991,6 +5132,9 @@ body {
|
|
|
4991
5132
|
.oui-opacity-80 {
|
|
4992
5133
|
opacity: 0.8;
|
|
4993
5134
|
}
|
|
5135
|
+
.oui-opacity-90 {
|
|
5136
|
+
opacity: 0.9;
|
|
5137
|
+
}
|
|
4994
5138
|
.oui-opacity-\[\.12\] {
|
|
4995
5139
|
opacity: .12;
|
|
4996
5140
|
}
|
|
@@ -5126,12 +5270,18 @@ body {
|
|
|
5126
5270
|
.oui-outline-danger-light {
|
|
5127
5271
|
outline-color: rgb(var(--oui-color-danger-light) / 1);
|
|
5128
5272
|
}
|
|
5273
|
+
.oui-outline-line {
|
|
5274
|
+
outline-color: rgb(var(--oui-color-line, 255 255 255) / 0.08);
|
|
5275
|
+
}
|
|
5129
5276
|
.oui-outline-line-12 {
|
|
5130
5277
|
outline-color: rgb(var(--oui-color-line, 255 255 255) / 0.12);
|
|
5131
5278
|
}
|
|
5132
5279
|
.oui-outline-primary-darken {
|
|
5133
5280
|
outline-color: rgb(var(--oui-color-primary-darken) / 1);
|
|
5134
5281
|
}
|
|
5282
|
+
.oui-outline-primary-light {
|
|
5283
|
+
outline-color: rgb(var(--oui-color-primary-light) / 1);
|
|
5284
|
+
}
|
|
5135
5285
|
.oui-outline-success {
|
|
5136
5286
|
outline-color: rgb(var(--oui-color-success) / 1);
|
|
5137
5287
|
}
|
|
@@ -5621,10 +5771,6 @@ body {
|
|
|
5621
5771
|
content: var(--tw-content);
|
|
5622
5772
|
background-color: transparent !important;
|
|
5623
5773
|
}
|
|
5624
|
-
.after\:oui-bg-white\/50::after {
|
|
5625
|
-
content: var(--tw-content);
|
|
5626
|
-
background-color: rgb(255 255 255 / 0.5);
|
|
5627
|
-
}
|
|
5628
5774
|
.after\:\!oui-shadow-transparent::after {
|
|
5629
5775
|
content: var(--tw-content);
|
|
5630
5776
|
--tw-shadow-color: transparent !important;
|
|
@@ -5650,6 +5796,13 @@ body {
|
|
|
5650
5796
|
--tw-border-opacity: 1;
|
|
5651
5797
|
border-color: rgb(var(--oui-color-danger-light) / var(--tw-border-opacity, 1));
|
|
5652
5798
|
}
|
|
5799
|
+
.focus-within\:oui-border-primary-light:focus-within {
|
|
5800
|
+
--tw-border-opacity: 1;
|
|
5801
|
+
border-color: rgb(var(--oui-color-primary-light) / var(--tw-border-opacity, 1));
|
|
5802
|
+
}
|
|
5803
|
+
.focus-within\:oui-border-transparent:focus-within {
|
|
5804
|
+
border-color: transparent;
|
|
5805
|
+
}
|
|
5653
5806
|
.focus-within\:oui-border-warning-light:focus-within {
|
|
5654
5807
|
--tw-border-opacity: 1;
|
|
5655
5808
|
border-color: rgb(var(--oui-color-warning-light) / var(--tw-border-opacity, 1));
|
|
@@ -5699,6 +5852,9 @@ body {
|
|
|
5699
5852
|
.hover\:oui-border-base-contrast-16:hover {
|
|
5700
5853
|
border-color: rgb(var(--oui-color-base-foreground) / 0.16);
|
|
5701
5854
|
}
|
|
5855
|
+
.hover\:oui-border-line-12:hover {
|
|
5856
|
+
border-color: rgb(var(--oui-color-line, 255 255 255) / 0.12);
|
|
5857
|
+
}
|
|
5702
5858
|
.hover\:oui-border-primary-light:hover {
|
|
5703
5859
|
--tw-border-opacity: 1;
|
|
5704
5860
|
border-color: rgb(var(--oui-color-primary-light) / var(--tw-border-opacity, 1));
|
|
@@ -5723,6 +5879,9 @@ body {
|
|
|
5723
5879
|
--tw-bg-opacity: 1;
|
|
5724
5880
|
background-color: rgb(var(--oui-color-base-3) / var(--tw-bg-opacity, 1));
|
|
5725
5881
|
}
|
|
5882
|
+
.hover\:oui-bg-base-3\/80:hover {
|
|
5883
|
+
background-color: rgb(var(--oui-color-base-3) / 0.8);
|
|
5884
|
+
}
|
|
5726
5885
|
.hover\:oui-bg-base-4:hover {
|
|
5727
5886
|
--tw-bg-opacity: 1;
|
|
5728
5887
|
background-color: rgb(var(--oui-color-base-4) / var(--tw-bg-opacity, 1));
|
|
@@ -5749,6 +5908,9 @@ body {
|
|
|
5749
5908
|
--tw-bg-opacity: 1;
|
|
5750
5909
|
background-color: rgb(var(--oui-color-base-8) / var(--tw-bg-opacity, 1));
|
|
5751
5910
|
}
|
|
5911
|
+
.hover\:oui-bg-base-static-80:hover {
|
|
5912
|
+
background-color: rgb(var(--oui-color-base-static) / 0.80);
|
|
5913
|
+
}
|
|
5752
5914
|
.hover\:oui-bg-danger-darken\/80:hover {
|
|
5753
5915
|
background-color: rgb(var(--oui-color-danger-darken) / 0.8);
|
|
5754
5916
|
}
|
|
@@ -5801,9 +5963,6 @@ body {
|
|
|
5801
5963
|
.hover\:oui-bg-warning-darken\/80:hover {
|
|
5802
5964
|
background-color: rgb(var(--oui-color-warning-darken) / 0.8);
|
|
5803
5965
|
}
|
|
5804
|
-
.hover\:oui-bg-white\/80:hover {
|
|
5805
|
-
background-color: rgb(255 255 255 / 0.8);
|
|
5806
|
-
}
|
|
5807
5966
|
.hover\:oui-fill-base-contrast:hover {
|
|
5808
5967
|
fill: rgb(var(--oui-color-base-foreground) / 0.98);
|
|
5809
5968
|
}
|
|
@@ -5816,12 +5975,6 @@ body {
|
|
|
5816
5975
|
.hover\:oui-fill-primary-light:hover {
|
|
5817
5976
|
fill: rgb(var(--oui-color-primary-light) / 1);
|
|
5818
5977
|
}
|
|
5819
|
-
.hover\:oui-fill-white\/80:hover {
|
|
5820
|
-
fill: rgb(255 255 255 / 0.8);
|
|
5821
|
-
}
|
|
5822
|
-
.hover\:oui-fill-white\/\[\.98\]:hover {
|
|
5823
|
-
fill: rgb(255 255 255 / .98);
|
|
5824
|
-
}
|
|
5825
5978
|
.hover\:oui-text-\[rgba\(255\,154\,46\,1\)\]:hover {
|
|
5826
5979
|
color: rgba(255, 154, 46, 1);
|
|
5827
5980
|
}
|
|
@@ -5834,17 +5987,33 @@ body {
|
|
|
5834
5987
|
.hover\:oui-text-base-contrast-80:hover {
|
|
5835
5988
|
color: rgb(var(--oui-color-base-foreground) / 0.80);
|
|
5836
5989
|
}
|
|
5990
|
+
.hover\:oui-text-danger\/80:hover {
|
|
5991
|
+
color: rgb(var(--oui-color-danger) / 0.8);
|
|
5992
|
+
}
|
|
5837
5993
|
.hover\:oui-text-primary-darken:hover {
|
|
5838
5994
|
--tw-text-opacity: 1;
|
|
5839
5995
|
color: rgb(var(--oui-color-primary-darken) / var(--tw-text-opacity, 1));
|
|
5840
5996
|
}
|
|
5997
|
+
.hover\:oui-text-primary-darken\/80:hover {
|
|
5998
|
+
color: rgb(var(--oui-color-primary-darken) / 0.8);
|
|
5999
|
+
}
|
|
6000
|
+
.hover\:oui-text-secondary:hover {
|
|
6001
|
+
--tw-text-opacity: 1;
|
|
6002
|
+
color: rgb(var(--oui-color-secondary) / var(--tw-text-opacity, 1));
|
|
6003
|
+
}
|
|
5841
6004
|
.hover\:oui-text-secondary\/80:hover {
|
|
5842
6005
|
color: rgb(var(--oui-color-secondary) / 0.8);
|
|
5843
6006
|
}
|
|
6007
|
+
.hover\:oui-text-success\/80:hover {
|
|
6008
|
+
color: rgb(var(--oui-color-success) / 0.8);
|
|
6009
|
+
}
|
|
5844
6010
|
.hover\:oui-text-warning-darken:hover {
|
|
5845
6011
|
--tw-text-opacity: 1;
|
|
5846
6012
|
color: rgb(var(--oui-color-warning-darken) / var(--tw-text-opacity, 1));
|
|
5847
6013
|
}
|
|
6014
|
+
.hover\:oui-text-warning-darken\/80:hover {
|
|
6015
|
+
color: rgb(var(--oui-color-warning-darken) / 0.8);
|
|
6016
|
+
}
|
|
5848
6017
|
.hover\:oui-text-white\/80:hover {
|
|
5849
6018
|
color: rgb(255 255 255 / 0.8);
|
|
5850
6019
|
}
|
|
@@ -5884,22 +6053,10 @@ body {
|
|
|
5884
6053
|
.focus\:oui-border-\[3px\]:focus {
|
|
5885
6054
|
border-width: 3px;
|
|
5886
6055
|
}
|
|
5887
|
-
.focus\:oui-border-danger-light:focus {
|
|
5888
|
-
--tw-border-opacity: 1;
|
|
5889
|
-
border-color: rgb(var(--oui-color-danger-light) / var(--tw-border-opacity, 1));
|
|
5890
|
-
}
|
|
5891
6056
|
.focus\:oui-border-primary-darken:focus {
|
|
5892
6057
|
--tw-border-opacity: 1;
|
|
5893
6058
|
border-color: rgb(var(--oui-color-primary-darken) / var(--tw-border-opacity, 1));
|
|
5894
6059
|
}
|
|
5895
|
-
.focus\:oui-border-primary-light:focus {
|
|
5896
|
-
--tw-border-opacity: 1;
|
|
5897
|
-
border-color: rgb(var(--oui-color-primary-light) / var(--tw-border-opacity, 1));
|
|
5898
|
-
}
|
|
5899
|
-
.focus\:oui-border-warning-light:focus {
|
|
5900
|
-
--tw-border-opacity: 1;
|
|
5901
|
-
border-color: rgb(var(--oui-color-warning-light) / var(--tw-border-opacity, 1));
|
|
5902
|
-
}
|
|
5903
6060
|
.focus\:\!oui-bg-primary-light:focus {
|
|
5904
6061
|
--tw-bg-opacity: 1 !important;
|
|
5905
6062
|
background-color: rgb(var(--oui-color-primary-light) / var(--tw-bg-opacity, 1)) !important;
|
|
@@ -5994,6 +6151,9 @@ body {
|
|
|
5994
6151
|
.active\:oui-bg-base-2\/70:active {
|
|
5995
6152
|
background-color: rgb(var(--oui-color-base-2) / 0.7);
|
|
5996
6153
|
}
|
|
6154
|
+
.active\:oui-bg-base-3\/70:active {
|
|
6155
|
+
background-color: rgb(var(--oui-color-base-3) / 0.7);
|
|
6156
|
+
}
|
|
5997
6157
|
.active\:oui-bg-base-4\/70:active {
|
|
5998
6158
|
background-color: rgb(var(--oui-color-base-4) / 0.7);
|
|
5999
6159
|
}
|
|
@@ -6001,6 +6161,9 @@ body {
|
|
|
6001
6161
|
--tw-bg-opacity: 1;
|
|
6002
6162
|
background-color: rgb(var(--oui-color-base-6) / var(--tw-bg-opacity, 1));
|
|
6003
6163
|
}
|
|
6164
|
+
.active\:oui-bg-base-static-54:active {
|
|
6165
|
+
background-color: rgb(var(--oui-color-base-static) / 0.54);
|
|
6166
|
+
}
|
|
6004
6167
|
.active\:oui-bg-danger-darken\/80:active {
|
|
6005
6168
|
background-color: rgb(var(--oui-color-danger-darken) / 0.8);
|
|
6006
6169
|
}
|
|
@@ -6019,8 +6182,20 @@ body {
|
|
|
6019
6182
|
.active\:oui-bg-warning-darken\/70:active {
|
|
6020
6183
|
background-color: rgb(var(--oui-color-warning-darken) / 0.7);
|
|
6021
6184
|
}
|
|
6022
|
-
.active\:oui-
|
|
6023
|
-
|
|
6185
|
+
.active\:oui-text-danger\/70:active {
|
|
6186
|
+
color: rgb(var(--oui-color-danger) / 0.7);
|
|
6187
|
+
}
|
|
6188
|
+
.active\:oui-text-primary-darken\/70:active {
|
|
6189
|
+
color: rgb(var(--oui-color-primary-darken) / 0.7);
|
|
6190
|
+
}
|
|
6191
|
+
.active\:oui-text-success\/70:active {
|
|
6192
|
+
color: rgb(var(--oui-color-success) / 0.7);
|
|
6193
|
+
}
|
|
6194
|
+
.active\:oui-text-warning-darken\/70:active {
|
|
6195
|
+
color: rgb(var(--oui-color-warning-darken) / 0.7);
|
|
6196
|
+
}
|
|
6197
|
+
.active\:oui-text-white\/70:active {
|
|
6198
|
+
color: rgb(255 255 255 / 0.7);
|
|
6024
6199
|
}
|
|
6025
6200
|
.active\:\!oui-shadow-\[0px_0px_4px_0px\]:active {
|
|
6026
6201
|
--tw-shadow: 0px 0px 4px 0px !important;
|
|
@@ -6058,20 +6233,20 @@ body {
|
|
|
6058
6233
|
--tw-bg-opacity: 1;
|
|
6059
6234
|
background-color: rgb(var(--oui-color-base-7) / var(--tw-bg-opacity, 1));
|
|
6060
6235
|
}
|
|
6236
|
+
.disabled\:oui-bg-base-static-36:disabled {
|
|
6237
|
+
background-color: rgb(var(--oui-color-base-static) / 0.36);
|
|
6238
|
+
}
|
|
6061
6239
|
.disabled\:oui-bg-transparent:disabled {
|
|
6062
6240
|
background-color: transparent;
|
|
6063
6241
|
}
|
|
6064
|
-
.disabled\:oui-bg-white\/30:disabled {
|
|
6065
|
-
background-color: rgb(255 255 255 / 0.3);
|
|
6066
|
-
}
|
|
6067
6242
|
.disabled\:oui-text-base-contrast-20:disabled {
|
|
6068
6243
|
color: rgb(var(--oui-color-base-foreground) / 0.2);
|
|
6069
6244
|
}
|
|
6070
6245
|
.disabled\:oui-text-base-contrast-36:disabled {
|
|
6071
6246
|
color: rgb(var(--oui-color-base-foreground) / 0.36);
|
|
6072
6247
|
}
|
|
6073
|
-
.disabled\:oui-text-
|
|
6074
|
-
color: rgb(
|
|
6248
|
+
.disabled\:oui-text-base-static-contrast-36:disabled {
|
|
6249
|
+
color: rgb(var(--oui-color-base-static-contrast) / 0.36);
|
|
6075
6250
|
}
|
|
6076
6251
|
.disabled\:oui-opacity-30:disabled {
|
|
6077
6252
|
opacity: 0.3;
|
|
@@ -6086,8 +6261,8 @@ body {
|
|
|
6086
6261
|
.disabled\:hover\:oui-bg-transparent:hover:disabled {
|
|
6087
6262
|
background-color: transparent;
|
|
6088
6263
|
}
|
|
6089
|
-
.hover\:disabled\:oui-bg-
|
|
6090
|
-
background-color: rgb(
|
|
6264
|
+
.hover\:disabled\:oui-bg-base-static-36:disabled:hover {
|
|
6265
|
+
background-color: rgb(var(--oui-color-base-static) / 0.36);
|
|
6091
6266
|
}
|
|
6092
6267
|
.oui-group:first-child .group-first\:oui-rounded-t-xl {
|
|
6093
6268
|
border-top-left-radius: var(--oui-rounded-xl, 0.75rem);
|
|
@@ -6117,6 +6292,10 @@ body {
|
|
|
6117
6292
|
--tw-translate-x: 0px;
|
|
6118
6293
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
6119
6294
|
}
|
|
6295
|
+
.oui-group:hover .group-hover\:oui-border-base-4 {
|
|
6296
|
+
--tw-border-opacity: 1;
|
|
6297
|
+
border-color: rgb(var(--oui-color-base-4) / var(--tw-border-opacity, 1));
|
|
6298
|
+
}
|
|
6120
6299
|
.oui-group:hover .group-hover\:oui-border-primary-light {
|
|
6121
6300
|
--tw-border-opacity: 1;
|
|
6122
6301
|
border-color: rgb(var(--oui-color-primary-light) / var(--tw-border-opacity, 1));
|
|
@@ -6435,10 +6614,9 @@ body {
|
|
|
6435
6614
|
content: var(--tw-content);
|
|
6436
6615
|
border-radius: var(--oui-rounded-full, 9999px);
|
|
6437
6616
|
}
|
|
6438
|
-
.data-\[state\=active\]\:after\:oui-bg-
|
|
6617
|
+
.data-\[state\=active\]\:after\:oui-bg-base-contrast[data-state=active]::after {
|
|
6439
6618
|
content: var(--tw-content);
|
|
6440
|
-
--
|
|
6441
|
-
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
6619
|
+
background-color: rgb(var(--oui-color-base-foreground) / 0.98);
|
|
6442
6620
|
}
|
|
6443
6621
|
.data-\[state\=active\]\:after\:oui-content-\[\'\'\][data-state=active]::after {
|
|
6444
6622
|
--tw-content: "";
|
|
@@ -6600,6 +6778,12 @@ body {
|
|
|
6600
6778
|
.md\:oui-top-1\/2 {
|
|
6601
6779
|
top: 50%;
|
|
6602
6780
|
}
|
|
6781
|
+
.md\:oui-order-1 {
|
|
6782
|
+
order: 1;
|
|
6783
|
+
}
|
|
6784
|
+
.md\:oui-order-2 {
|
|
6785
|
+
order: 2;
|
|
6786
|
+
}
|
|
6603
6787
|
.md\:oui-m-3 {
|
|
6604
6788
|
margin: 0.75rem;
|
|
6605
6789
|
}
|
|
@@ -6607,6 +6791,10 @@ body {
|
|
|
6607
6791
|
margin-left: 0px;
|
|
6608
6792
|
margin-right: 0px;
|
|
6609
6793
|
}
|
|
6794
|
+
.md\:oui-mx-auto {
|
|
6795
|
+
margin-left: auto;
|
|
6796
|
+
margin-right: auto;
|
|
6797
|
+
}
|
|
6610
6798
|
.md\:oui-mb-3 {
|
|
6611
6799
|
margin-bottom: 0.75rem;
|
|
6612
6800
|
}
|
|
@@ -6632,6 +6820,10 @@ body {
|
|
|
6632
6820
|
width: 18px;
|
|
6633
6821
|
height: 18px;
|
|
6634
6822
|
}
|
|
6823
|
+
.md\:oui-size-\[480px\] {
|
|
6824
|
+
width: 480px;
|
|
6825
|
+
height: 480px;
|
|
6826
|
+
}
|
|
6635
6827
|
.md\:oui-h-10 {
|
|
6636
6828
|
height: 2.5rem;
|
|
6637
6829
|
}
|
|
@@ -6674,6 +6866,9 @@ body {
|
|
|
6674
6866
|
.md\:oui-h-\[var\(--radix-select-trigger-height\)\] {
|
|
6675
6867
|
height: var(--radix-select-trigger-height);
|
|
6676
6868
|
}
|
|
6869
|
+
.md\:oui-w-1\/2 {
|
|
6870
|
+
width: 50%;
|
|
6871
|
+
}
|
|
6677
6872
|
.md\:oui-w-3 {
|
|
6678
6873
|
width: 0.75rem;
|
|
6679
6874
|
}
|
|
@@ -6686,6 +6881,9 @@ body {
|
|
|
6686
6881
|
.md\:oui-w-6 {
|
|
6687
6882
|
width: 1.5rem;
|
|
6688
6883
|
}
|
|
6884
|
+
.md\:oui-w-\[1040px\] {
|
|
6885
|
+
width: 1040px;
|
|
6886
|
+
}
|
|
6689
6887
|
.md\:oui-w-\[14px\] {
|
|
6690
6888
|
width: 14px;
|
|
6691
6889
|
}
|
|
@@ -6708,6 +6906,9 @@ body {
|
|
|
6708
6906
|
.md\:oui-min-w-\[var\(--radix-select-trigger-width\)\] {
|
|
6709
6907
|
min-width: var(--radix-select-trigger-width);
|
|
6710
6908
|
}
|
|
6909
|
+
.md\:oui-max-w-\[1040px\] {
|
|
6910
|
+
max-width: 1040px;
|
|
6911
|
+
}
|
|
6711
6912
|
.md\:oui-flex-shrink {
|
|
6712
6913
|
flex-shrink: 1;
|
|
6713
6914
|
}
|
|
@@ -6718,6 +6919,12 @@ body {
|
|
|
6718
6919
|
.md\:oui-cursor-not-allowed {
|
|
6719
6920
|
cursor: not-allowed;
|
|
6720
6921
|
}
|
|
6922
|
+
.md\:oui-grid-cols-2 {
|
|
6923
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
6924
|
+
}
|
|
6925
|
+
.md\:oui-grid-cols-3 {
|
|
6926
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
6927
|
+
}
|
|
6721
6928
|
.md\:oui-grid-cols-4 {
|
|
6722
6929
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
6723
6930
|
}
|
|
@@ -6778,6 +6985,9 @@ body {
|
|
|
6778
6985
|
.md\:oui-justify-stretch {
|
|
6779
6986
|
justify-content: stretch;
|
|
6780
6987
|
}
|
|
6988
|
+
.md\:oui-gap-10 {
|
|
6989
|
+
gap: 2.5rem;
|
|
6990
|
+
}
|
|
6781
6991
|
.md\:oui-gap-3 {
|
|
6782
6992
|
gap: 0.75rem;
|
|
6783
6993
|
}
|
|
@@ -6838,10 +7048,22 @@ body {
|
|
|
6838
7048
|
padding-top: 0px;
|
|
6839
7049
|
padding-bottom: 0px;
|
|
6840
7050
|
}
|
|
7051
|
+
.md\:oui-py-12 {
|
|
7052
|
+
padding-top: 3rem;
|
|
7053
|
+
padding-bottom: 3rem;
|
|
7054
|
+
}
|
|
6841
7055
|
.md\:oui-py-3 {
|
|
6842
7056
|
padding-top: 0.75rem;
|
|
6843
7057
|
padding-bottom: 0.75rem;
|
|
6844
7058
|
}
|
|
7059
|
+
.md\:oui-py-7 {
|
|
7060
|
+
padding-top: 1.75rem;
|
|
7061
|
+
padding-bottom: 1.75rem;
|
|
7062
|
+
}
|
|
7063
|
+
.md\:oui-py-\[38px\] {
|
|
7064
|
+
padding-top: 38px;
|
|
7065
|
+
padding-bottom: 38px;
|
|
7066
|
+
}
|
|
6845
7067
|
.md\:oui-pb-\[14px\] {
|
|
6846
7068
|
padding-bottom: 14px;
|
|
6847
7069
|
}
|
|
@@ -6893,6 +7115,10 @@ body {
|
|
|
6893
7115
|
font-size: var(--oui-font-size-3xl, 1.75rem);
|
|
6894
7116
|
line-height: 2.25rem;
|
|
6895
7117
|
}
|
|
7118
|
+
.md\:oui-text-6xl {
|
|
7119
|
+
font-size: var(--oui-font-size-6xl, 3rem);
|
|
7120
|
+
line-height: 3rem;
|
|
7121
|
+
}
|
|
6896
7122
|
.md\:oui-text-\[20px\] {
|
|
6897
7123
|
font-size: 20px;
|
|
6898
7124
|
}
|
|
@@ -6925,6 +7151,9 @@ body {
|
|
|
6925
7151
|
.md\:oui-leading-\[56px\] {
|
|
6926
7152
|
line-height: 56px;
|
|
6927
7153
|
}
|
|
7154
|
+
.md\:oui-leading-\[72px\] {
|
|
7155
|
+
line-height: 72px;
|
|
7156
|
+
}
|
|
6928
7157
|
.md\:oui-text-base-contrast-20 {
|
|
6929
7158
|
color: rgb(var(--oui-color-base-foreground) / 0.2);
|
|
6930
7159
|
}
|
|
@@ -7989,10 +8218,50 @@ body {
|
|
|
7989
8218
|
.\[\&\>th\:last-child\]\:oui-pr-3 > th:last-child {
|
|
7990
8219
|
padding-right: 0.75rem;
|
|
7991
8220
|
}
|
|
8221
|
+
.\[\&_\.oui-h-10\.oui-w-full\]\:\!oui-mx-0 .oui-h-10.oui-w-full {
|
|
8222
|
+
margin-left: 0px !important;
|
|
8223
|
+
margin-right: 0px !important;
|
|
8224
|
+
}
|
|
8225
|
+
.\[\&_\.oui-scroll-indicator-leading\]\:oui-hidden .oui-scroll-indicator-leading {
|
|
8226
|
+
display: none;
|
|
8227
|
+
}
|
|
8228
|
+
.\[\&_\.oui-scroll-indicator-tailing\]\:oui-hidden .oui-scroll-indicator-tailing {
|
|
8229
|
+
display: none;
|
|
8230
|
+
}
|
|
8231
|
+
.\[\&_\.oui-table-pagination\]\:\!oui-justify-end .oui-table-pagination {
|
|
8232
|
+
justify-content: flex-end !important;
|
|
8233
|
+
}
|
|
8234
|
+
.\[\&_button\]\:oui-border-secondary\/80 button {
|
|
8235
|
+
border-color: rgb(var(--oui-color-secondary) / 0.8);
|
|
8236
|
+
}
|
|
7992
8237
|
.\[\&_img\]\:\!oui-h-\[18px\] img {
|
|
7993
8238
|
height: 18px !important;
|
|
7994
8239
|
}
|
|
7995
8240
|
.\[\&_p\]\:oui-text-base-contrast-36 p {
|
|
7996
8241
|
color: rgb(var(--oui-color-base-foreground) / 0.36);
|
|
7997
8242
|
}
|
|
8243
|
+
.\[\&_svg\]\:oui-text-secondary svg {
|
|
8244
|
+
--tw-text-opacity: 1;
|
|
8245
|
+
color: rgb(var(--oui-color-secondary) / var(--tw-text-opacity, 1));
|
|
8246
|
+
}
|
|
8247
|
+
.\[\&_td\]\:\!oui-px-3 td {
|
|
8248
|
+
padding-left: 0.75rem !important;
|
|
8249
|
+
padding-right: 0.75rem !important;
|
|
8250
|
+
}
|
|
8251
|
+
.\[\&_td\]\:oui-font-medium td {
|
|
8252
|
+
font-weight: 500;
|
|
8253
|
+
}
|
|
8254
|
+
.\[\&_td\]\:oui-tracking-\[0\.03em\] td {
|
|
8255
|
+
letter-spacing: 0.03em;
|
|
8256
|
+
}
|
|
8257
|
+
.\[\&_th\]\:\!oui-px-3 th {
|
|
8258
|
+
padding-left: 0.75rem !important;
|
|
8259
|
+
padding-right: 0.75rem !important;
|
|
8260
|
+
}
|
|
8261
|
+
.\[\&_th\]\:oui-font-semibold th {
|
|
8262
|
+
font-weight: 600;
|
|
8263
|
+
}
|
|
8264
|
+
.\[\&_th\]\:\!oui-tracking-\[0\.03em\] th {
|
|
8265
|
+
letter-spacing: 0.03em !important;
|
|
8266
|
+
}
|
|
7998
8267
|
/*# sourceMappingURL=index.css.map */
|