@fileverse/ui 4.0.3 → 4.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +52 -41
- package/dist/index.css +381 -7
- package/dist/index.es.d.ts +137 -2
- package/dist/index.es.js +15804 -12913
- package/package.json +6 -3
package/dist/index.css
CHANGED
|
@@ -985,6 +985,9 @@ video {
|
|
|
985
985
|
.pointer-events-none {
|
|
986
986
|
pointer-events: none;
|
|
987
987
|
}
|
|
988
|
+
.visible {
|
|
989
|
+
visibility: visible;
|
|
990
|
+
}
|
|
988
991
|
.invisible {
|
|
989
992
|
visibility: hidden;
|
|
990
993
|
}
|
|
@@ -1101,6 +1104,9 @@ video {
|
|
|
1101
1104
|
.z-\[999\] {
|
|
1102
1105
|
z-index: 999;
|
|
1103
1106
|
}
|
|
1107
|
+
.m-1 {
|
|
1108
|
+
margin: 0.25rem;
|
|
1109
|
+
}
|
|
1104
1110
|
.-mx-1 {
|
|
1105
1111
|
margin-left: -0.25rem;
|
|
1106
1112
|
margin-right: -0.25rem;
|
|
@@ -1117,6 +1123,10 @@ video {
|
|
|
1117
1123
|
margin-top: 0px;
|
|
1118
1124
|
margin-bottom: 0px;
|
|
1119
1125
|
}
|
|
1126
|
+
.my-1 {
|
|
1127
|
+
margin-top: 0.25rem;
|
|
1128
|
+
margin-bottom: 0.25rem;
|
|
1129
|
+
}
|
|
1120
1130
|
.my-auto {
|
|
1121
1131
|
margin-top: auto;
|
|
1122
1132
|
margin-bottom: auto;
|
|
@@ -1133,6 +1143,9 @@ video {
|
|
|
1133
1143
|
.ml-2 {
|
|
1134
1144
|
margin-left: 0.5rem;
|
|
1135
1145
|
}
|
|
1146
|
+
.ml-auto {
|
|
1147
|
+
margin-left: auto;
|
|
1148
|
+
}
|
|
1136
1149
|
.mr-1 {
|
|
1137
1150
|
margin-right: 0.25rem;
|
|
1138
1151
|
}
|
|
@@ -1193,14 +1206,20 @@ video {
|
|
|
1193
1206
|
.aspect-video {
|
|
1194
1207
|
aspect-ratio: 16 / 9;
|
|
1195
1208
|
}
|
|
1209
|
+
.\!h-\[4rem\] {
|
|
1210
|
+
height: 4rem !important;
|
|
1211
|
+
}
|
|
1212
|
+
.\!h-auto {
|
|
1213
|
+
height: auto !important;
|
|
1214
|
+
}
|
|
1196
1215
|
.h-10 {
|
|
1197
1216
|
height: 2.5rem;
|
|
1198
1217
|
}
|
|
1199
1218
|
.h-12 {
|
|
1200
1219
|
height: 3rem;
|
|
1201
1220
|
}
|
|
1202
|
-
.h-
|
|
1203
|
-
height:
|
|
1221
|
+
.h-3\.5 {
|
|
1222
|
+
height: 0.875rem;
|
|
1204
1223
|
}
|
|
1205
1224
|
.h-4 {
|
|
1206
1225
|
height: 1rem;
|
|
@@ -1244,6 +1263,9 @@ video {
|
|
|
1244
1263
|
.h-\[52px\] {
|
|
1245
1264
|
height: 52px;
|
|
1246
1265
|
}
|
|
1266
|
+
.h-\[56px\] {
|
|
1267
|
+
height: 56px;
|
|
1268
|
+
}
|
|
1247
1269
|
.h-\[68px\] {
|
|
1248
1270
|
height: 68px;
|
|
1249
1271
|
}
|
|
@@ -1253,6 +1275,9 @@ video {
|
|
|
1253
1275
|
.h-\[calc\(100\%-2rem\)\] {
|
|
1254
1276
|
height: calc(100% - 2rem);
|
|
1255
1277
|
}
|
|
1278
|
+
.h-\[var\(--radix-select-trigger-height\)\] {
|
|
1279
|
+
height: var(--radix-select-trigger-height);
|
|
1280
|
+
}
|
|
1256
1281
|
.h-auto {
|
|
1257
1282
|
height: auto;
|
|
1258
1283
|
}
|
|
@@ -1263,12 +1288,24 @@ video {
|
|
|
1263
1288
|
.h-full {
|
|
1264
1289
|
height: 100%;
|
|
1265
1290
|
}
|
|
1291
|
+
.h-px {
|
|
1292
|
+
height: 1px;
|
|
1293
|
+
}
|
|
1266
1294
|
.h-screen {
|
|
1267
1295
|
height: 100vh;
|
|
1268
1296
|
}
|
|
1297
|
+
.max-h-96 {
|
|
1298
|
+
max-height: 24rem;
|
|
1299
|
+
}
|
|
1300
|
+
.max-h-\[300px\] {
|
|
1301
|
+
max-height: 300px;
|
|
1302
|
+
}
|
|
1269
1303
|
.\!min-h-12 {
|
|
1270
1304
|
min-height: 3rem !important;
|
|
1271
1305
|
}
|
|
1306
|
+
.min-h-10 {
|
|
1307
|
+
min-height: 2.5rem;
|
|
1308
|
+
}
|
|
1272
1309
|
.min-h-9 {
|
|
1273
1310
|
min-height: 2.25rem;
|
|
1274
1311
|
}
|
|
@@ -1296,6 +1333,9 @@ video {
|
|
|
1296
1333
|
.w-24 {
|
|
1297
1334
|
width: 6rem;
|
|
1298
1335
|
}
|
|
1336
|
+
.w-3\.5 {
|
|
1337
|
+
width: 0.875rem;
|
|
1338
|
+
}
|
|
1299
1339
|
.w-3\/4 {
|
|
1300
1340
|
width: 75%;
|
|
1301
1341
|
}
|
|
@@ -1329,12 +1369,18 @@ video {
|
|
|
1329
1369
|
.w-\[172px\] {
|
|
1330
1370
|
width: 172px;
|
|
1331
1371
|
}
|
|
1372
|
+
.w-\[180px\] {
|
|
1373
|
+
width: 180px;
|
|
1374
|
+
}
|
|
1332
1375
|
.w-\[18px\] {
|
|
1333
1376
|
width: 18px;
|
|
1334
1377
|
}
|
|
1335
1378
|
.w-\[20px\] {
|
|
1336
1379
|
width: 20px;
|
|
1337
1380
|
}
|
|
1381
|
+
.w-\[280px\] {
|
|
1382
|
+
width: 280px;
|
|
1383
|
+
}
|
|
1338
1384
|
.w-\[350px\] {
|
|
1339
1385
|
width: 350px;
|
|
1340
1386
|
}
|
|
@@ -1362,6 +1408,9 @@ video {
|
|
|
1362
1408
|
.w-\[80vw\] {
|
|
1363
1409
|
width: 80vw;
|
|
1364
1410
|
}
|
|
1411
|
+
.w-\[85\%\] {
|
|
1412
|
+
width: 85%;
|
|
1413
|
+
}
|
|
1365
1414
|
.w-fit {
|
|
1366
1415
|
width: -moz-fit-content;
|
|
1367
1416
|
width: fit-content;
|
|
@@ -1393,6 +1442,9 @@ video {
|
|
|
1393
1442
|
.min-w-\[25\%\] {
|
|
1394
1443
|
min-width: 25%;
|
|
1395
1444
|
}
|
|
1445
|
+
.min-w-\[280px\] {
|
|
1446
|
+
min-width: 280px;
|
|
1447
|
+
}
|
|
1396
1448
|
.min-w-\[30px\] {
|
|
1397
1449
|
min-width: 30px;
|
|
1398
1450
|
}
|
|
@@ -1402,9 +1454,18 @@ video {
|
|
|
1402
1454
|
.min-w-\[40px\] {
|
|
1403
1455
|
min-width: 40px;
|
|
1404
1456
|
}
|
|
1457
|
+
.min-w-\[418px\] {
|
|
1458
|
+
min-width: 418px;
|
|
1459
|
+
}
|
|
1405
1460
|
.min-w-\[60\%\] {
|
|
1406
1461
|
min-width: 60%;
|
|
1407
1462
|
}
|
|
1463
|
+
.min-w-\[calc\(100vw-32px\)\] {
|
|
1464
|
+
min-width: calc(100vw - 32px);
|
|
1465
|
+
}
|
|
1466
|
+
.min-w-\[var\(--radix-select-trigger-width\)\] {
|
|
1467
|
+
min-width: var(--radix-select-trigger-width);
|
|
1468
|
+
}
|
|
1408
1469
|
.min-w-fit {
|
|
1409
1470
|
min-width: -moz-fit-content;
|
|
1410
1471
|
min-width: fit-content;
|
|
@@ -1415,10 +1476,16 @@ video {
|
|
|
1415
1476
|
.max-w-\[172px\] {
|
|
1416
1477
|
max-width: 172px;
|
|
1417
1478
|
}
|
|
1479
|
+
.max-w-\[440px\] {
|
|
1480
|
+
max-width: 440px;
|
|
1481
|
+
}
|
|
1418
1482
|
.max-w-fit {
|
|
1419
1483
|
max-width: -moz-fit-content;
|
|
1420
1484
|
max-width: fit-content;
|
|
1421
1485
|
}
|
|
1486
|
+
.max-w-full {
|
|
1487
|
+
max-width: 100%;
|
|
1488
|
+
}
|
|
1422
1489
|
.max-w-lg {
|
|
1423
1490
|
max-width: 32rem;
|
|
1424
1491
|
}
|
|
@@ -1507,6 +1574,11 @@ video {
|
|
|
1507
1574
|
.cursor-pointer {
|
|
1508
1575
|
cursor: pointer;
|
|
1509
1576
|
}
|
|
1577
|
+
.select-none {
|
|
1578
|
+
-webkit-user-select: none;
|
|
1579
|
+
-moz-user-select: none;
|
|
1580
|
+
user-select: none;
|
|
1581
|
+
}
|
|
1510
1582
|
.resize-none {
|
|
1511
1583
|
resize: none;
|
|
1512
1584
|
}
|
|
@@ -1515,6 +1587,9 @@ video {
|
|
|
1515
1587
|
-moz-appearance: none;
|
|
1516
1588
|
appearance: none;
|
|
1517
1589
|
}
|
|
1590
|
+
.grid-flow-col {
|
|
1591
|
+
grid-auto-flow: column;
|
|
1592
|
+
}
|
|
1518
1593
|
.grid-cols-2 {
|
|
1519
1594
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1520
1595
|
}
|
|
@@ -1611,6 +1686,12 @@ video {
|
|
|
1611
1686
|
.overflow-hidden {
|
|
1612
1687
|
overflow: hidden;
|
|
1613
1688
|
}
|
|
1689
|
+
.overflow-y-auto {
|
|
1690
|
+
overflow-y: auto;
|
|
1691
|
+
}
|
|
1692
|
+
.overflow-x-hidden {
|
|
1693
|
+
overflow-x: hidden;
|
|
1694
|
+
}
|
|
1614
1695
|
.truncate {
|
|
1615
1696
|
overflow: hidden;
|
|
1616
1697
|
text-overflow: ellipsis;
|
|
@@ -1640,6 +1721,9 @@ video {
|
|
|
1640
1721
|
.rounded-md {
|
|
1641
1722
|
border-radius: calc(var(--radius) - 2px);
|
|
1642
1723
|
}
|
|
1724
|
+
.rounded-none {
|
|
1725
|
+
border-radius: 0px;
|
|
1726
|
+
}
|
|
1643
1727
|
.rounded-sm {
|
|
1644
1728
|
border-radius: calc(var(--radius) - 4px);
|
|
1645
1729
|
}
|
|
@@ -1716,6 +1800,9 @@ video {
|
|
|
1716
1800
|
--tw-bg-opacity: 1;
|
|
1717
1801
|
background-color: rgb(209 213 219 / var(--tw-bg-opacity));
|
|
1718
1802
|
}
|
|
1803
|
+
.bg-inherit {
|
|
1804
|
+
background-color: inherit;
|
|
1805
|
+
}
|
|
1719
1806
|
.bg-transparent {
|
|
1720
1807
|
background-color: transparent;
|
|
1721
1808
|
}
|
|
@@ -1757,10 +1844,22 @@ video {
|
|
|
1757
1844
|
.p-\[2px\] {
|
|
1758
1845
|
padding: 2px;
|
|
1759
1846
|
}
|
|
1847
|
+
.\!px-1 {
|
|
1848
|
+
padding-left: 0.25rem !important;
|
|
1849
|
+
padding-right: 0.25rem !important;
|
|
1850
|
+
}
|
|
1851
|
+
.\!py-\[2px\] {
|
|
1852
|
+
padding-top: 2px !important;
|
|
1853
|
+
padding-bottom: 2px !important;
|
|
1854
|
+
}
|
|
1760
1855
|
.px-0 {
|
|
1761
1856
|
padding-left: 0px;
|
|
1762
1857
|
padding-right: 0px;
|
|
1763
1858
|
}
|
|
1859
|
+
.px-1 {
|
|
1860
|
+
padding-left: 0.25rem;
|
|
1861
|
+
padding-right: 0.25rem;
|
|
1862
|
+
}
|
|
1764
1863
|
.px-2 {
|
|
1765
1864
|
padding-left: 0.5rem;
|
|
1766
1865
|
padding-right: 0.5rem;
|
|
@@ -1785,10 +1884,18 @@ video {
|
|
|
1785
1884
|
padding-left: 2rem;
|
|
1786
1885
|
padding-right: 2rem;
|
|
1787
1886
|
}
|
|
1887
|
+
.px-px {
|
|
1888
|
+
padding-left: 1px;
|
|
1889
|
+
padding-right: 1px;
|
|
1890
|
+
}
|
|
1788
1891
|
.py-1 {
|
|
1789
1892
|
padding-top: 0.25rem;
|
|
1790
1893
|
padding-bottom: 0.25rem;
|
|
1791
1894
|
}
|
|
1895
|
+
.py-1\.5 {
|
|
1896
|
+
padding-top: 0.375rem;
|
|
1897
|
+
padding-bottom: 0.375rem;
|
|
1898
|
+
}
|
|
1792
1899
|
.py-10 {
|
|
1793
1900
|
padding-top: 2.5rem;
|
|
1794
1901
|
padding-bottom: 2.5rem;
|
|
@@ -1821,12 +1928,18 @@ video {
|
|
|
1821
1928
|
.pl-10 {
|
|
1822
1929
|
padding-left: 2.5rem;
|
|
1823
1930
|
}
|
|
1931
|
+
.pl-2 {
|
|
1932
|
+
padding-left: 0.5rem;
|
|
1933
|
+
}
|
|
1824
1934
|
.pr-10 {
|
|
1825
1935
|
padding-right: 2.5rem;
|
|
1826
1936
|
}
|
|
1827
1937
|
.pr-3 {
|
|
1828
1938
|
padding-right: 0.75rem;
|
|
1829
1939
|
}
|
|
1940
|
+
.pr-8 {
|
|
1941
|
+
padding-right: 2rem;
|
|
1942
|
+
}
|
|
1830
1943
|
.pt-0 {
|
|
1831
1944
|
padding-top: 0px;
|
|
1832
1945
|
}
|
|
@@ -1869,6 +1982,10 @@ video {
|
|
|
1869
1982
|
.text-\[32px\] {
|
|
1870
1983
|
font-size: 32px;
|
|
1871
1984
|
}
|
|
1985
|
+
.text-sm {
|
|
1986
|
+
font-size: 0.875rem;
|
|
1987
|
+
line-height: 1.25rem;
|
|
1988
|
+
}
|
|
1872
1989
|
.font-\[700\] {
|
|
1873
1990
|
font-weight: 700;
|
|
1874
1991
|
}
|
|
@@ -1881,6 +1998,9 @@ video {
|
|
|
1881
1998
|
.leading-none {
|
|
1882
1999
|
line-height: 1;
|
|
1883
2000
|
}
|
|
2001
|
+
.tracking-widest {
|
|
2002
|
+
letter-spacing: 0.1em;
|
|
2003
|
+
}
|
|
1884
2004
|
.text-gray-500 {
|
|
1885
2005
|
--tw-text-opacity: 1;
|
|
1886
2006
|
color: rgb(107 114 128 / var(--tw-text-opacity));
|
|
@@ -1998,120 +2118,172 @@ video {
|
|
|
1998
2118
|
.ease-in-out {
|
|
1999
2119
|
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2000
2120
|
}
|
|
2121
|
+
|
|
2122
|
+
#selected-value > div > div > p {
|
|
2123
|
+
display: none;
|
|
2124
|
+
}
|
|
2125
|
+
|
|
2001
2126
|
.file\:text-body-sm::file-selector-button {
|
|
2002
2127
|
font-family: system-ui;
|
|
2003
2128
|
font-size: 14px;
|
|
2004
2129
|
font-weight: 400;
|
|
2005
2130
|
line-height: 20px;
|
|
2006
2131
|
}
|
|
2132
|
+
|
|
2007
2133
|
.placeholder\:color-text-disabled::-moz-placeholder {
|
|
2008
2134
|
color: hsl(var(--color-text-disabled));
|
|
2009
2135
|
}
|
|
2136
|
+
|
|
2010
2137
|
.placeholder\:color-text-disabled::placeholder {
|
|
2011
2138
|
color: hsl(var(--color-text-disabled));
|
|
2012
2139
|
}
|
|
2140
|
+
|
|
2013
2141
|
.after\:color-bg-default-inverse::after {
|
|
2014
2142
|
content: var(--tw-content);
|
|
2015
2143
|
background-color: hsl(var(--color-bg-default-inverse));
|
|
2016
2144
|
}
|
|
2145
|
+
|
|
2017
2146
|
.after\:color-icon-disabled::after {
|
|
2018
2147
|
content: var(--tw-content);
|
|
2019
2148
|
background-color: hsl(var(--color-icon-disabled));
|
|
2020
2149
|
}
|
|
2150
|
+
|
|
2021
2151
|
.checked\:color-text-inverse:checked {
|
|
2022
2152
|
color: hsl(var(--color-text-inverse));
|
|
2023
2153
|
}
|
|
2154
|
+
|
|
2024
2155
|
.checked\:color-bg-default-inverse:checked {
|
|
2025
2156
|
background-color: hsl(var(--color-bg-default-inverse));
|
|
2026
2157
|
}
|
|
2158
|
+
|
|
2027
2159
|
.hover\:color-text-inverse:hover {
|
|
2028
2160
|
color: hsl(var(--color-text-inverse));
|
|
2029
2161
|
}
|
|
2162
|
+
|
|
2030
2163
|
.hover\:\!color-bg-default-hover:hover {
|
|
2031
2164
|
background-color: hsl(var(--color-bg-default-hover)) !important;
|
|
2032
2165
|
}
|
|
2166
|
+
|
|
2033
2167
|
.hover\:color-bg-default-hover:hover {
|
|
2034
2168
|
background-color: hsl(var(--color-bg-default-hover));
|
|
2035
2169
|
}
|
|
2170
|
+
|
|
2036
2171
|
.hover\:color-bg-secondary-hover:hover {
|
|
2037
2172
|
background-color: hsl(var(--color-bg-secondary-hover));
|
|
2038
2173
|
}
|
|
2039
|
-
|
|
2040
|
-
background-color: hsl(var(--color-bg-tertiary));
|
|
2041
|
-
}
|
|
2174
|
+
|
|
2042
2175
|
.hover\:color-bg-disabled:hover {
|
|
2043
2176
|
background-color: hsl(var(--color-bg-disabled));
|
|
2044
2177
|
}
|
|
2178
|
+
|
|
2045
2179
|
.hover\:\!color-bg-brand-hover:hover {
|
|
2046
2180
|
background-color: hsl(var(--color-bg-brand-hover)) !important;
|
|
2047
2181
|
}
|
|
2182
|
+
|
|
2048
2183
|
.hover\:color-bg-brand-hover:hover {
|
|
2049
2184
|
background-color: hsl(var(--color-bg-brand-hover));
|
|
2050
2185
|
}
|
|
2186
|
+
|
|
2051
2187
|
.hover\:color-button-default-hover:hover {
|
|
2052
2188
|
background-color: hsl(var(--color-button-default-hover));
|
|
2053
2189
|
}
|
|
2190
|
+
|
|
2054
2191
|
.hover\:color-button-secondary-hover:hover {
|
|
2055
2192
|
background-color: hsl(var(--color-button-secondary-hover));
|
|
2056
2193
|
}
|
|
2194
|
+
|
|
2057
2195
|
.hover\:color-button-danger-hover:hover {
|
|
2058
2196
|
background-color: hsl(var(--color-button-danger-hover));
|
|
2059
2197
|
}
|
|
2198
|
+
|
|
2060
2199
|
.hover\:\!color-button-floating-hover:hover {
|
|
2061
2200
|
background-color: hsl(var(--color-button-floating-hover)) !important;
|
|
2062
2201
|
}
|
|
2202
|
+
|
|
2063
2203
|
.hover\:color-border-hover:hover {
|
|
2064
2204
|
border-color: hsl(var(--color-border-hover));
|
|
2065
2205
|
}
|
|
2206
|
+
|
|
2207
|
+
.focus\:color-text-default:focus {
|
|
2208
|
+
color: hsl(var(--color-text-default));
|
|
2209
|
+
}
|
|
2210
|
+
|
|
2211
|
+
.focus\:color-bg-default-selected:focus {
|
|
2212
|
+
background-color: hsl(var(--color-bg-default-selected));
|
|
2213
|
+
}
|
|
2214
|
+
|
|
2066
2215
|
.focus-visible\:color-border-hover:focus-visible {
|
|
2067
2216
|
border-color: hsl(var(--color-border-hover));
|
|
2068
2217
|
}
|
|
2218
|
+
|
|
2069
2219
|
.disabled\:color-text-disabled:disabled {
|
|
2070
2220
|
color: hsl(var(--color-text-disabled));
|
|
2071
2221
|
}
|
|
2222
|
+
|
|
2072
2223
|
.disabled\:color-bg-disabled:disabled {
|
|
2073
2224
|
background-color: hsl(var(--color-bg-disabled));
|
|
2074
2225
|
}
|
|
2226
|
+
|
|
2075
2227
|
.disabled\:\!color-button-disabled:disabled {
|
|
2076
2228
|
background-color: hsl(var(--color-button-disabled)) !important;
|
|
2077
2229
|
border-color: hsl(var(--color-button-disabled)) !important;
|
|
2078
2230
|
color: hsl(var(--color-text-disabled)) !important;
|
|
2079
2231
|
}
|
|
2232
|
+
|
|
2080
2233
|
.disabled\:color-button-disabled:disabled {
|
|
2081
2234
|
background-color: hsl(var(--color-button-disabled));
|
|
2082
2235
|
border-color: hsl(var(--color-button-disabled));
|
|
2083
2236
|
color: hsl(var(--color-text-disabled));
|
|
2084
2237
|
}
|
|
2238
|
+
|
|
2085
2239
|
.disabled\:color-border-disabled:disabled {
|
|
2086
2240
|
border-color: hsl(var(--color-border-disabled));
|
|
2087
2241
|
}
|
|
2242
|
+
|
|
2243
|
+
.aria-selected\:color-text-default[aria-selected="true"] {
|
|
2244
|
+
color: hsl(var(--color-text-default));
|
|
2245
|
+
}
|
|
2246
|
+
|
|
2247
|
+
.aria-selected\:color-bg-default-selected[aria-selected="true"] {
|
|
2248
|
+
background-color: hsl(var(--color-bg-default-selected));
|
|
2249
|
+
}
|
|
2250
|
+
|
|
2088
2251
|
.data-\[state\=active\]\:color-text-default[data-state=active] {
|
|
2089
2252
|
color: hsl(var(--color-text-default));
|
|
2090
2253
|
}
|
|
2254
|
+
|
|
2091
2255
|
.data-\[state\=open\]\:color-text-default[data-state=open] {
|
|
2092
2256
|
color: hsl(var(--color-text-default));
|
|
2093
2257
|
}
|
|
2258
|
+
|
|
2094
2259
|
.data-\[state\=unchecked\]\:color-bg-default-hover[data-state=unchecked] {
|
|
2095
2260
|
background-color: hsl(var(--color-bg-default-hover));
|
|
2096
2261
|
}
|
|
2262
|
+
|
|
2097
2263
|
.data-\[state\=open\]\:color-bg-default-selected[data-state=open] {
|
|
2098
2264
|
background-color: hsl(var(--color-bg-default-selected));
|
|
2099
2265
|
}
|
|
2266
|
+
|
|
2100
2267
|
.data-\[state\=selected\]\:color-bg-disabled[data-state=selected] {
|
|
2101
2268
|
background-color: hsl(var(--color-bg-disabled));
|
|
2102
2269
|
}
|
|
2270
|
+
|
|
2103
2271
|
.data-\[state\=checked\]\:color-bg-brand-hover[data-state=checked] {
|
|
2104
2272
|
background-color: hsl(var(--color-bg-brand-hover));
|
|
2105
2273
|
}
|
|
2274
|
+
|
|
2106
2275
|
.data-\[state\=active\]\:color-border-active[data-state=active] {
|
|
2107
2276
|
border-color: hsl(var(--color-border-active));
|
|
2108
2277
|
}
|
|
2278
|
+
|
|
2109
2279
|
.data-\[state\=unchecked\]\:hover\:enabled\:color-bg-default-hover:enabled:hover[data-state=unchecked] {
|
|
2110
2280
|
background-color: hsl(var(--color-bg-default-hover));
|
|
2111
2281
|
}
|
|
2282
|
+
|
|
2112
2283
|
.data-\[state\=checked\]\:hover\:enabled\:color-bg-brand-hover:enabled:hover[data-state=checked] {
|
|
2113
2284
|
background-color: hsl(var(--color-bg-brand-hover));
|
|
2114
2285
|
}
|
|
2286
|
+
|
|
2115
2287
|
@media (min-width: 1024px) {
|
|
2116
2288
|
|
|
2117
2289
|
.lg\:\!text-heading-2xlg {
|
|
@@ -2121,139 +2293,222 @@ video {
|
|
|
2121
2293
|
line-height: 40px !important;
|
|
2122
2294
|
}
|
|
2123
2295
|
}
|
|
2296
|
+
|
|
2297
|
+
.\[\&_\[cmdk-group-heading\]\]\:text-helper-text-sm [cmdk-group-heading] {
|
|
2298
|
+
font-family: system-ui;
|
|
2299
|
+
font-size: 12px;
|
|
2300
|
+
font-weight: 400;
|
|
2301
|
+
line-height: 16px;
|
|
2302
|
+
}
|
|
2303
|
+
|
|
2304
|
+
.\[\&_\[cmdk-group-heading\]\]\:color-text-disabled [cmdk-group-heading] {
|
|
2305
|
+
color: hsl(var(--color-text-disabled));
|
|
2306
|
+
}
|
|
2307
|
+
|
|
2124
2308
|
.data-\[state\=unchecked\]\:toggle-default[data-state=unchecked] {
|
|
2125
2309
|
background-color: hsl(var(--color-bg-disabled));
|
|
2126
2310
|
}
|
|
2311
|
+
|
|
2127
2312
|
.data-\[state\=checked\]\:toggle-active[data-state=checked] {
|
|
2128
2313
|
background-color: hsl(var(--color-bg-brand));
|
|
2129
2314
|
}
|
|
2315
|
+
|
|
2130
2316
|
.data-\[state\=checked\]\:disabled\:toggle-default:disabled[data-state=checked] {
|
|
2131
2317
|
background-color: hsl(var(--color-bg-disabled));
|
|
2132
2318
|
}
|
|
2319
|
+
|
|
2133
2320
|
.file\:border-0::file-selector-button {
|
|
2134
2321
|
border-width: 0px;
|
|
2135
2322
|
}
|
|
2323
|
+
|
|
2136
2324
|
.file\:bg-transparent::file-selector-button {
|
|
2137
2325
|
background-color: transparent;
|
|
2138
2326
|
}
|
|
2327
|
+
|
|
2139
2328
|
.after\:block::after {
|
|
2140
2329
|
content: var(--tw-content);
|
|
2141
2330
|
display: block;
|
|
2142
2331
|
}
|
|
2332
|
+
|
|
2143
2333
|
.after\:h-\[10px\]::after {
|
|
2144
2334
|
content: var(--tw-content);
|
|
2145
2335
|
height: 10px;
|
|
2146
2336
|
}
|
|
2337
|
+
|
|
2147
2338
|
.after\:h-\[6px\]::after {
|
|
2148
2339
|
content: var(--tw-content);
|
|
2149
2340
|
height: 6px;
|
|
2150
2341
|
}
|
|
2342
|
+
|
|
2151
2343
|
.after\:w-\[10px\]::after {
|
|
2152
2344
|
content: var(--tw-content);
|
|
2153
2345
|
width: 10px;
|
|
2154
2346
|
}
|
|
2347
|
+
|
|
2155
2348
|
.after\:w-\[6px\]::after {
|
|
2156
2349
|
content: var(--tw-content);
|
|
2157
2350
|
width: 6px;
|
|
2158
2351
|
}
|
|
2352
|
+
|
|
2159
2353
|
.after\:rounded-\[50\%\]::after {
|
|
2160
2354
|
content: var(--tw-content);
|
|
2161
2355
|
border-radius: 50%;
|
|
2162
2356
|
}
|
|
2357
|
+
|
|
2163
2358
|
.after\:content-\[\'\'\]::after {
|
|
2164
2359
|
--tw-content: '';
|
|
2165
2360
|
content: var(--tw-content);
|
|
2166
2361
|
}
|
|
2362
|
+
|
|
2167
2363
|
.checked\:border-0:checked {
|
|
2168
2364
|
border-width: 0px;
|
|
2169
2365
|
}
|
|
2366
|
+
|
|
2170
2367
|
.hover\:cursor-pointer:hover {
|
|
2171
2368
|
cursor: pointer;
|
|
2172
2369
|
}
|
|
2370
|
+
|
|
2371
|
+
.hover\:bg-inherit:hover {
|
|
2372
|
+
background-color: inherit;
|
|
2373
|
+
}
|
|
2374
|
+
|
|
2173
2375
|
.hover\:bg-transparent:hover {
|
|
2174
2376
|
background-color: transparent;
|
|
2175
2377
|
}
|
|
2378
|
+
|
|
2176
2379
|
.hover\:bg-opacity-50:hover {
|
|
2177
2380
|
--tw-bg-opacity: 0.5;
|
|
2178
2381
|
}
|
|
2382
|
+
|
|
2179
2383
|
.hover\:opacity-90:hover {
|
|
2180
2384
|
opacity: 0.9;
|
|
2181
2385
|
}
|
|
2386
|
+
|
|
2387
|
+
.hover\:brightness-95:hover {
|
|
2388
|
+
--tw-brightness: brightness(.95);
|
|
2389
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
2390
|
+
}
|
|
2391
|
+
|
|
2182
2392
|
.focus\:shadow-none:focus {
|
|
2183
2393
|
--tw-shadow: 0 0 #0000;
|
|
2184
2394
|
--tw-shadow-colored: 0 0 #0000;
|
|
2185
2395
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2186
2396
|
}
|
|
2397
|
+
|
|
2187
2398
|
.focus\:outline-none:focus {
|
|
2188
2399
|
outline: 2px solid transparent;
|
|
2189
2400
|
outline-offset: 2px;
|
|
2190
2401
|
}
|
|
2402
|
+
|
|
2191
2403
|
.focus\:ring-0:focus {
|
|
2192
2404
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2193
2405
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2194
2406
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2195
2407
|
}
|
|
2408
|
+
|
|
2196
2409
|
.focus\:ring-2:focus {
|
|
2197
2410
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2198
2411
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2199
2412
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2200
2413
|
}
|
|
2414
|
+
|
|
2201
2415
|
.focus\:ring-focused:focus {
|
|
2202
2416
|
--tw-ring-color: hsl(var(--focused));
|
|
2203
2417
|
}
|
|
2418
|
+
|
|
2204
2419
|
.focus\:ring-offset-2:focus {
|
|
2205
2420
|
--tw-ring-offset-width: 2px;
|
|
2206
2421
|
}
|
|
2422
|
+
|
|
2207
2423
|
.focus-visible\:outline-none:focus-visible {
|
|
2208
2424
|
outline: 2px solid transparent;
|
|
2209
2425
|
outline-offset: 2px;
|
|
2210
2426
|
}
|
|
2211
|
-
|
|
2427
|
+
|
|
2428
|
+
.focus-visible\:ring-1:focus-visible {
|
|
2212
2429
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2213
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(
|
|
2430
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2214
2431
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2215
2432
|
}
|
|
2433
|
+
|
|
2216
2434
|
.focus-visible\:ring-focused:focus-visible {
|
|
2217
2435
|
--tw-ring-color: hsl(var(--focused));
|
|
2218
2436
|
}
|
|
2437
|
+
|
|
2219
2438
|
.focus-visible\:ring-offset-2:focus-visible {
|
|
2220
2439
|
--tw-ring-offset-width: 2px;
|
|
2221
2440
|
}
|
|
2441
|
+
|
|
2222
2442
|
.focus-visible\:ring-offset-white:focus-visible {
|
|
2223
2443
|
--tw-ring-offset-color: #fff;
|
|
2224
2444
|
}
|
|
2445
|
+
|
|
2225
2446
|
.disabled\:pointer-events-none:disabled {
|
|
2226
2447
|
pointer-events: none;
|
|
2227
2448
|
}
|
|
2449
|
+
|
|
2228
2450
|
.disabled\:cursor-not-allowed:disabled {
|
|
2229
2451
|
cursor: not-allowed;
|
|
2230
2452
|
}
|
|
2453
|
+
|
|
2231
2454
|
.disabled\:opacity-50:disabled {
|
|
2232
2455
|
opacity: 0.5;
|
|
2233
2456
|
}
|
|
2457
|
+
|
|
2234
2458
|
.group:hover .group-hover\:visible {
|
|
2235
2459
|
visibility: visible;
|
|
2236
2460
|
}
|
|
2461
|
+
|
|
2237
2462
|
.group:hover .group-hover\:opacity-100 {
|
|
2238
2463
|
opacity: 1;
|
|
2239
2464
|
}
|
|
2465
|
+
|
|
2240
2466
|
.peer:checked ~ .peer-checked\:block {
|
|
2241
2467
|
display: block;
|
|
2242
2468
|
}
|
|
2469
|
+
|
|
2243
2470
|
.peer:disabled ~ .peer-disabled\:cursor-not-allowed {
|
|
2244
2471
|
cursor: not-allowed;
|
|
2245
2472
|
}
|
|
2473
|
+
|
|
2246
2474
|
.peer:disabled ~ .peer-disabled\:opacity-70 {
|
|
2247
2475
|
opacity: 0.7;
|
|
2248
2476
|
}
|
|
2477
|
+
|
|
2478
|
+
.data-\[disabled\]\:pointer-events-none[data-disabled] {
|
|
2479
|
+
pointer-events: none;
|
|
2480
|
+
}
|
|
2481
|
+
|
|
2482
|
+
.data-\[side\=bottom\]\:translate-y-1[data-side=bottom] {
|
|
2483
|
+
--tw-translate-y: 0.25rem;
|
|
2484
|
+
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));
|
|
2485
|
+
}
|
|
2486
|
+
|
|
2487
|
+
.data-\[side\=left\]\:-translate-x-1[data-side=left] {
|
|
2488
|
+
--tw-translate-x: -0.25rem;
|
|
2489
|
+
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));
|
|
2490
|
+
}
|
|
2491
|
+
|
|
2492
|
+
.data-\[side\=right\]\:translate-x-1[data-side=right] {
|
|
2493
|
+
--tw-translate-x: 0.25rem;
|
|
2494
|
+
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));
|
|
2495
|
+
}
|
|
2496
|
+
|
|
2497
|
+
.data-\[side\=top\]\:-translate-y-1[data-side=top] {
|
|
2498
|
+
--tw-translate-y: -0.25rem;
|
|
2499
|
+
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));
|
|
2500
|
+
}
|
|
2501
|
+
|
|
2249
2502
|
.data-\[state\=checked\]\:translate-x-5[data-state=checked] {
|
|
2250
2503
|
--tw-translate-x: 1.25rem;
|
|
2251
2504
|
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));
|
|
2252
2505
|
}
|
|
2506
|
+
|
|
2253
2507
|
.data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked] {
|
|
2254
2508
|
--tw-translate-x: 0px;
|
|
2255
2509
|
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));
|
|
2256
2510
|
}
|
|
2511
|
+
|
|
2257
2512
|
@keyframes accordion-up {
|
|
2258
2513
|
|
|
2259
2514
|
from {
|
|
@@ -2264,9 +2519,11 @@ video {
|
|
|
2264
2519
|
height: 0;
|
|
2265
2520
|
}
|
|
2266
2521
|
}
|
|
2522
|
+
|
|
2267
2523
|
.data-\[state\=closed\]\:animate-accordion-up[data-state=closed] {
|
|
2268
2524
|
animation: accordion-up 0.2s ease-out;
|
|
2269
2525
|
}
|
|
2526
|
+
|
|
2270
2527
|
@keyframes accordion-down {
|
|
2271
2528
|
|
|
2272
2529
|
from {
|
|
@@ -2277,21 +2534,31 @@ video {
|
|
|
2277
2534
|
height: var(--radix-accordion-content-height);
|
|
2278
2535
|
}
|
|
2279
2536
|
}
|
|
2537
|
+
|
|
2280
2538
|
.data-\[state\=open\]\:animate-accordion-down[data-state=open] {
|
|
2281
2539
|
animation: accordion-down 0.2s ease-out;
|
|
2282
2540
|
}
|
|
2541
|
+
|
|
2283
2542
|
.data-\[state\=active\]\:border-b-2[data-state=active] {
|
|
2284
2543
|
border-bottom-width: 2px;
|
|
2285
2544
|
}
|
|
2545
|
+
|
|
2286
2546
|
.data-\[state\=active\]\:bg-none[data-state=active] {
|
|
2287
2547
|
background-image: none;
|
|
2288
2548
|
}
|
|
2549
|
+
|
|
2550
|
+
.data-\[disabled\]\:opacity-50[data-disabled] {
|
|
2551
|
+
opacity: 0.5;
|
|
2552
|
+
}
|
|
2553
|
+
|
|
2289
2554
|
.data-\[state\=closed\]\:duration-300[data-state=closed] {
|
|
2290
2555
|
transition-duration: 300ms;
|
|
2291
2556
|
}
|
|
2557
|
+
|
|
2292
2558
|
.data-\[state\=open\]\:duration-500[data-state=open] {
|
|
2293
2559
|
transition-duration: 500ms;
|
|
2294
2560
|
}
|
|
2561
|
+
|
|
2295
2562
|
.data-\[state\=open\]\:animate-in[data-state=open] {
|
|
2296
2563
|
animation-name: enter;
|
|
2297
2564
|
animation-duration: 150ms;
|
|
@@ -2301,6 +2568,7 @@ video {
|
|
|
2301
2568
|
--tw-enter-translate-x: initial;
|
|
2302
2569
|
--tw-enter-translate-y: initial;
|
|
2303
2570
|
}
|
|
2571
|
+
|
|
2304
2572
|
.data-\[state\=closed\]\:animate-out[data-state=closed] {
|
|
2305
2573
|
animation-name: exit;
|
|
2306
2574
|
animation-duration: 150ms;
|
|
@@ -2310,72 +2578,95 @@ video {
|
|
|
2310
2578
|
--tw-exit-translate-x: initial;
|
|
2311
2579
|
--tw-exit-translate-y: initial;
|
|
2312
2580
|
}
|
|
2581
|
+
|
|
2313
2582
|
.data-\[state\=closed\]\:fade-out-0[data-state=closed] {
|
|
2314
2583
|
--tw-exit-opacity: 0;
|
|
2315
2584
|
}
|
|
2585
|
+
|
|
2316
2586
|
.data-\[state\=open\]\:fade-in-0[data-state=open] {
|
|
2317
2587
|
--tw-enter-opacity: 0;
|
|
2318
2588
|
}
|
|
2589
|
+
|
|
2319
2590
|
.data-\[state\=closed\]\:zoom-out-95[data-state=closed] {
|
|
2320
2591
|
--tw-exit-scale: .95;
|
|
2321
2592
|
}
|
|
2593
|
+
|
|
2322
2594
|
.data-\[state\=open\]\:zoom-in-95[data-state=open] {
|
|
2323
2595
|
--tw-enter-scale: .95;
|
|
2324
2596
|
}
|
|
2597
|
+
|
|
2325
2598
|
.data-\[side\=bottom\]\:slide-in-from-top-2[data-side=bottom] {
|
|
2326
2599
|
--tw-enter-translate-y: -0.5rem;
|
|
2327
2600
|
}
|
|
2601
|
+
|
|
2328
2602
|
.data-\[side\=left\]\:slide-in-from-right-2[data-side=left] {
|
|
2329
2603
|
--tw-enter-translate-x: 0.5rem;
|
|
2330
2604
|
}
|
|
2605
|
+
|
|
2331
2606
|
.data-\[side\=right\]\:slide-in-from-left-2[data-side=right] {
|
|
2332
2607
|
--tw-enter-translate-x: -0.5rem;
|
|
2333
2608
|
}
|
|
2609
|
+
|
|
2334
2610
|
.data-\[side\=top\]\:slide-in-from-bottom-2[data-side=top] {
|
|
2335
2611
|
--tw-enter-translate-y: 0.5rem;
|
|
2336
2612
|
}
|
|
2613
|
+
|
|
2337
2614
|
.data-\[state\=closed\]\:slide-out-to-bottom[data-state=closed] {
|
|
2338
2615
|
--tw-exit-translate-y: 100%;
|
|
2339
2616
|
}
|
|
2617
|
+
|
|
2340
2618
|
.data-\[state\=closed\]\:slide-out-to-left[data-state=closed] {
|
|
2341
2619
|
--tw-exit-translate-x: -100%;
|
|
2342
2620
|
}
|
|
2621
|
+
|
|
2343
2622
|
.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state=closed] {
|
|
2344
2623
|
--tw-exit-translate-x: -50%;
|
|
2345
2624
|
}
|
|
2625
|
+
|
|
2346
2626
|
.data-\[state\=closed\]\:slide-out-to-right[data-state=closed] {
|
|
2347
2627
|
--tw-exit-translate-x: 100%;
|
|
2348
2628
|
}
|
|
2629
|
+
|
|
2349
2630
|
.data-\[state\=closed\]\:slide-out-to-top[data-state=closed] {
|
|
2350
2631
|
--tw-exit-translate-y: -100%;
|
|
2351
2632
|
}
|
|
2633
|
+
|
|
2352
2634
|
.data-\[state\=closed\]\:slide-out-to-top-\[48\%\][data-state=closed] {
|
|
2353
2635
|
--tw-exit-translate-y: -48%;
|
|
2354
2636
|
}
|
|
2637
|
+
|
|
2355
2638
|
.data-\[state\=open\]\:slide-in-from-bottom[data-state=open] {
|
|
2356
2639
|
--tw-enter-translate-y: 100%;
|
|
2357
2640
|
}
|
|
2641
|
+
|
|
2358
2642
|
.data-\[state\=open\]\:slide-in-from-left[data-state=open] {
|
|
2359
2643
|
--tw-enter-translate-x: -100%;
|
|
2360
2644
|
}
|
|
2645
|
+
|
|
2361
2646
|
.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state=open] {
|
|
2362
2647
|
--tw-enter-translate-x: -50%;
|
|
2363
2648
|
}
|
|
2649
|
+
|
|
2364
2650
|
.data-\[state\=open\]\:slide-in-from-right[data-state=open] {
|
|
2365
2651
|
--tw-enter-translate-x: 100%;
|
|
2366
2652
|
}
|
|
2653
|
+
|
|
2367
2654
|
.data-\[state\=open\]\:slide-in-from-top[data-state=open] {
|
|
2368
2655
|
--tw-enter-translate-y: -100%;
|
|
2369
2656
|
}
|
|
2657
|
+
|
|
2370
2658
|
.data-\[state\=open\]\:slide-in-from-top-\[48\%\][data-state=open] {
|
|
2371
2659
|
--tw-enter-translate-y: -48%;
|
|
2372
2660
|
}
|
|
2661
|
+
|
|
2373
2662
|
.data-\[state\=closed\]\:duration-300[data-state=closed] {
|
|
2374
2663
|
animation-duration: 300ms;
|
|
2375
2664
|
}
|
|
2665
|
+
|
|
2376
2666
|
.data-\[state\=open\]\:duration-500[data-state=open] {
|
|
2377
2667
|
animation-duration: 500ms;
|
|
2378
2668
|
}
|
|
2669
|
+
|
|
2379
2670
|
@media (min-width: 640px) {
|
|
2380
2671
|
|
|
2381
2672
|
.sm\:max-w-sm {
|
|
@@ -2400,6 +2691,7 @@ video {
|
|
|
2400
2691
|
border-radius: var(--radius);
|
|
2401
2692
|
}
|
|
2402
2693
|
}
|
|
2694
|
+
|
|
2403
2695
|
@media (min-width: 768px) {
|
|
2404
2696
|
|
|
2405
2697
|
.md\:block {
|
|
@@ -2438,6 +2730,7 @@ video {
|
|
|
2438
2730
|
padding: 2rem;
|
|
2439
2731
|
}
|
|
2440
2732
|
}
|
|
2733
|
+
|
|
2441
2734
|
@media (min-width: 1024px) {
|
|
2442
2735
|
|
|
2443
2736
|
.lg\:mb-1 {
|
|
@@ -2464,11 +2757,19 @@ video {
|
|
|
2464
2757
|
width: 75%;
|
|
2465
2758
|
}
|
|
2466
2759
|
|
|
2760
|
+
.lg\:w-\[452px\] {
|
|
2761
|
+
width: 452px;
|
|
2762
|
+
}
|
|
2763
|
+
|
|
2467
2764
|
.lg\:w-fit {
|
|
2468
2765
|
width: -moz-fit-content;
|
|
2469
2766
|
width: fit-content;
|
|
2470
2767
|
}
|
|
2471
2768
|
|
|
2769
|
+
.lg\:min-w-\[420px\] {
|
|
2770
|
+
min-width: 420px;
|
|
2771
|
+
}
|
|
2772
|
+
|
|
2472
2773
|
.lg\:text-wrap {
|
|
2473
2774
|
text-wrap: wrap;
|
|
2474
2775
|
}
|
|
@@ -2478,31 +2779,104 @@ video {
|
|
|
2478
2779
|
padding-bottom: 1rem;
|
|
2479
2780
|
}
|
|
2480
2781
|
}
|
|
2782
|
+
|
|
2481
2783
|
.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]) {
|
|
2482
2784
|
padding-right: 0px;
|
|
2483
2785
|
}
|
|
2786
|
+
|
|
2484
2787
|
.\[\&\>span\]\:\!left-\[10\%\]>span {
|
|
2485
2788
|
left: 10% !important;
|
|
2486
2789
|
}
|
|
2790
|
+
|
|
2487
2791
|
.\[\&\>span\]\:\!left-\[80\%\]>span {
|
|
2488
2792
|
left: 80% !important;
|
|
2489
2793
|
}
|
|
2794
|
+
|
|
2490
2795
|
.\[\&\>span\]\:\!top-\[20\%\]>span {
|
|
2491
2796
|
top: 20% !important;
|
|
2492
2797
|
}
|
|
2798
|
+
|
|
2493
2799
|
.\[\&\>span\]\:\!top-\[60\%\]>span {
|
|
2494
2800
|
top: 60% !important;
|
|
2495
2801
|
}
|
|
2802
|
+
|
|
2803
|
+
.\[\&\>span\]\:line-clamp-1>span {
|
|
2804
|
+
overflow: hidden;
|
|
2805
|
+
display: -webkit-box;
|
|
2806
|
+
-webkit-box-orient: vertical;
|
|
2807
|
+
-webkit-line-clamp: 1;
|
|
2808
|
+
}
|
|
2809
|
+
|
|
2496
2810
|
.\[\&\>tr\]\:last\:border-b-0:last-child>tr {
|
|
2497
2811
|
border-bottom-width: 0px;
|
|
2498
2812
|
}
|
|
2813
|
+
|
|
2499
2814
|
.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg {
|
|
2500
2815
|
--tw-rotate: 180deg;
|
|
2501
2816
|
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));
|
|
2502
2817
|
}
|
|
2818
|
+
|
|
2819
|
+
.\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading] {
|
|
2820
|
+
padding-left: 0.5rem;
|
|
2821
|
+
padding-right: 0.5rem;
|
|
2822
|
+
}
|
|
2823
|
+
|
|
2824
|
+
.\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading] {
|
|
2825
|
+
padding-top: 0.375rem;
|
|
2826
|
+
padding-bottom: 0.375rem;
|
|
2827
|
+
}
|
|
2828
|
+
|
|
2829
|
+
.\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading] {
|
|
2830
|
+
font-weight: 500;
|
|
2831
|
+
}
|
|
2832
|
+
|
|
2833
|
+
.\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 [cmdk-group]:not([hidden]) ~[cmdk-group] {
|
|
2834
|
+
padding-top: 0px;
|
|
2835
|
+
}
|
|
2836
|
+
|
|
2837
|
+
.\[\&_\[cmdk-group\]\]\:px-2 [cmdk-group] {
|
|
2838
|
+
padding-left: 0.5rem;
|
|
2839
|
+
padding-right: 0.5rem;
|
|
2840
|
+
}
|
|
2841
|
+
|
|
2842
|
+
.\[\&_\[cmdk-input-wrapper\]_svg\]\:h-5 [cmdk-input-wrapper] svg {
|
|
2843
|
+
height: 1.25rem;
|
|
2844
|
+
}
|
|
2845
|
+
|
|
2846
|
+
.\[\&_\[cmdk-input-wrapper\]_svg\]\:w-5 [cmdk-input-wrapper] svg {
|
|
2847
|
+
width: 1.25rem;
|
|
2848
|
+
}
|
|
2849
|
+
|
|
2850
|
+
.\[\&_\[cmdk-input\]\]\:h-12 [cmdk-input] {
|
|
2851
|
+
height: 3rem;
|
|
2852
|
+
}
|
|
2853
|
+
|
|
2854
|
+
.\[\&_\[cmdk-item\]\]\:px-2 [cmdk-item] {
|
|
2855
|
+
padding-left: 0.5rem;
|
|
2856
|
+
padding-right: 0.5rem;
|
|
2857
|
+
}
|
|
2858
|
+
|
|
2859
|
+
.\[\&_\[cmdk-item\]\]\:py-3 [cmdk-item] {
|
|
2860
|
+
padding-top: 0.75rem;
|
|
2861
|
+
padding-bottom: 0.75rem;
|
|
2862
|
+
}
|
|
2863
|
+
|
|
2864
|
+
.\[\&_\[cmdk-item\]_svg\]\:h-5 [cmdk-item] svg {
|
|
2865
|
+
height: 1.25rem;
|
|
2866
|
+
}
|
|
2867
|
+
|
|
2868
|
+
.\[\&_\[cmdk-item\]_svg\]\:w-5 [cmdk-item] svg {
|
|
2869
|
+
width: 1.25rem;
|
|
2870
|
+
}
|
|
2871
|
+
|
|
2872
|
+
.\[\&_svg\]\:invisible svg {
|
|
2873
|
+
visibility: hidden;
|
|
2874
|
+
}
|
|
2875
|
+
|
|
2503
2876
|
.\[\&_tr\:last-child\]\:border-0 tr:last-child {
|
|
2504
2877
|
border-width: 0px;
|
|
2505
2878
|
}
|
|
2879
|
+
|
|
2506
2880
|
.\[\&_tr\]\:border-b tr {
|
|
2507
2881
|
border-bottom-width: 1px;
|
|
2508
2882
|
}
|