@cnc_cbz/usefultools-plugin-official 1.1.0 → 1.1.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/base-converter.mjs +290 -0
- package/dist/case-converter.mjs +290 -0
- package/dist/chmod-calculator.mjs +290 -0
- package/dist/color-converter.mjs +290 -0
- package/dist/cron-expression.mjs +290 -0
- package/dist/cyber-chef.mjs +290 -0
- package/dist/docker-parser.mjs +290 -0
- package/dist/hash-generator.mjs +290 -0
- package/dist/html-entity.mjs +290 -0
- package/dist/idiom-dictionary.mjs +2813 -0
- package/dist/image-compressor.mjs +290 -0
- package/dist/ip-subnet.mjs +290 -0
- package/dist/js-runner.mjs +290 -0
- package/dist/json-diff.mjs +290 -0
- package/dist/json-formatter.mjs +290 -0
- package/dist/json-yaml.mjs +290 -0
- package/dist/jwt-parser.mjs +290 -0
- package/dist/lorem-ipsum.mjs +290 -0
- package/dist/markdown-preview.mjs +290 -0
- package/dist/password-generator.mjs +290 -0
- package/dist/qr-generator.mjs +290 -0
- package/dist/regex-tester.mjs +290 -0
- package/dist/sql-formatter.mjs +290 -0
- package/dist/text-diff.mjs +290 -0
- package/dist/text-splitter.mjs +3298 -0
- package/dist/text-stats.mjs +290 -0
- package/dist/timestamp-converter.mjs +290 -0
- package/dist/translator.mjs +290 -0
- package/dist/url-codec.mjs +290 -0
- package/dist/uuid-generator.mjs +290 -0
- package/package.json +1 -1
- package/plugin.json +3 -1
package/dist/json-formatter.mjs
CHANGED
|
@@ -1201,6 +1201,10 @@ export {
|
|
|
1201
1201
|
position: relative;
|
|
1202
1202
|
}
|
|
1203
1203
|
|
|
1204
|
+
.sticky {
|
|
1205
|
+
position: sticky;
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1204
1208
|
.inset-0 {
|
|
1205
1209
|
inset: calc(var(--spacing) * 0);
|
|
1206
1210
|
}
|
|
@@ -1213,6 +1217,10 @@ export {
|
|
|
1213
1217
|
inset-inline-end: var(--spacing);
|
|
1214
1218
|
}
|
|
1215
1219
|
|
|
1220
|
+
.top-0 {
|
|
1221
|
+
top: calc(var(--spacing) * 0);
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1216
1224
|
.top-1\\/2 {
|
|
1217
1225
|
top: 50%;
|
|
1218
1226
|
}
|
|
@@ -1225,6 +1233,10 @@ export {
|
|
|
1225
1233
|
left: calc(var(--spacing) * 2);
|
|
1226
1234
|
}
|
|
1227
1235
|
|
|
1236
|
+
.z-10 {
|
|
1237
|
+
z-index: 10;
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1228
1240
|
.z-50 {
|
|
1229
1241
|
z-index: 50;
|
|
1230
1242
|
}
|
|
@@ -1233,6 +1245,40 @@ export {
|
|
|
1233
1245
|
grid-column: span 2 / span 2;
|
|
1234
1246
|
}
|
|
1235
1247
|
|
|
1248
|
+
.container {
|
|
1249
|
+
width: 100%;
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
@media (min-width: 40rem) {
|
|
1253
|
+
.container {
|
|
1254
|
+
max-width: 40rem;
|
|
1255
|
+
}
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
@media (min-width: 48rem) {
|
|
1259
|
+
.container {
|
|
1260
|
+
max-width: 48rem;
|
|
1261
|
+
}
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
@media (min-width: 64rem) {
|
|
1265
|
+
.container {
|
|
1266
|
+
max-width: 64rem;
|
|
1267
|
+
}
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
@media (min-width: 80rem) {
|
|
1271
|
+
.container {
|
|
1272
|
+
max-width: 80rem;
|
|
1273
|
+
}
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
@media (min-width: 96rem) {
|
|
1277
|
+
.container {
|
|
1278
|
+
max-width: 96rem;
|
|
1279
|
+
}
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1236
1282
|
.-mx-1 {
|
|
1237
1283
|
margin-inline: calc(var(--spacing) * -1);
|
|
1238
1284
|
}
|
|
@@ -1257,6 +1303,10 @@ export {
|
|
|
1257
1303
|
margin-top: calc(var(--spacing) * 3);
|
|
1258
1304
|
}
|
|
1259
1305
|
|
|
1306
|
+
.mt-4 {
|
|
1307
|
+
margin-top: calc(var(--spacing) * 4);
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1260
1310
|
.mr-1 {
|
|
1261
1311
|
margin-right: calc(var(--spacing) * 1);
|
|
1262
1312
|
}
|
|
@@ -1285,6 +1335,10 @@ export {
|
|
|
1285
1335
|
margin-bottom: calc(var(--spacing) * 3);
|
|
1286
1336
|
}
|
|
1287
1337
|
|
|
1338
|
+
.mb-5 {
|
|
1339
|
+
margin-bottom: calc(var(--spacing) * 5);
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1288
1342
|
.ml-0\\.5 {
|
|
1289
1343
|
margin-left: calc(var(--spacing) * .5);
|
|
1290
1344
|
}
|
|
@@ -1373,6 +1427,10 @@ export {
|
|
|
1373
1427
|
height: calc(var(--spacing) * 10);
|
|
1374
1428
|
}
|
|
1375
1429
|
|
|
1430
|
+
.h-11 {
|
|
1431
|
+
height: calc(var(--spacing) * 11);
|
|
1432
|
+
}
|
|
1433
|
+
|
|
1376
1434
|
.h-12 {
|
|
1377
1435
|
height: calc(var(--spacing) * 12);
|
|
1378
1436
|
}
|
|
@@ -1389,6 +1447,10 @@ export {
|
|
|
1389
1447
|
height: 100%;
|
|
1390
1448
|
}
|
|
1391
1449
|
|
|
1450
|
+
.max-h-28 {
|
|
1451
|
+
max-height: calc(var(--spacing) * 28);
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1392
1454
|
.max-h-36 {
|
|
1393
1455
|
max-height: calc(var(--spacing) * 36);
|
|
1394
1456
|
}
|
|
@@ -1409,6 +1471,10 @@ export {
|
|
|
1409
1471
|
max-height: 200px;
|
|
1410
1472
|
}
|
|
1411
1473
|
|
|
1474
|
+
.max-h-\\[420px\\] {
|
|
1475
|
+
max-height: 420px;
|
|
1476
|
+
}
|
|
1477
|
+
|
|
1412
1478
|
.max-h-full {
|
|
1413
1479
|
max-height: 100%;
|
|
1414
1480
|
}
|
|
@@ -1429,6 +1495,22 @@ export {
|
|
|
1429
1495
|
min-height: 200px;
|
|
1430
1496
|
}
|
|
1431
1497
|
|
|
1498
|
+
.min-h-\\[260px\\] {
|
|
1499
|
+
min-height: 260px;
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1502
|
+
.min-h-\\[320px\\] {
|
|
1503
|
+
min-height: 320px;
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
.min-h-full {
|
|
1507
|
+
min-height: 100%;
|
|
1508
|
+
}
|
|
1509
|
+
|
|
1510
|
+
.w-1 {
|
|
1511
|
+
width: calc(var(--spacing) * 1);
|
|
1512
|
+
}
|
|
1513
|
+
|
|
1432
1514
|
.w-1\\.5 {
|
|
1433
1515
|
width: calc(var(--spacing) * 1.5);
|
|
1434
1516
|
}
|
|
@@ -1493,6 +1575,10 @@ export {
|
|
|
1493
1575
|
width: calc(var(--spacing) * 32);
|
|
1494
1576
|
}
|
|
1495
1577
|
|
|
1578
|
+
.w-56 {
|
|
1579
|
+
width: calc(var(--spacing) * 56);
|
|
1580
|
+
}
|
|
1581
|
+
|
|
1496
1582
|
.w-72 {
|
|
1497
1583
|
width: calc(var(--spacing) * 72);
|
|
1498
1584
|
}
|
|
@@ -1501,6 +1587,10 @@ export {
|
|
|
1501
1587
|
width: 100%;
|
|
1502
1588
|
}
|
|
1503
1589
|
|
|
1590
|
+
.max-w-60 {
|
|
1591
|
+
max-width: calc(var(--spacing) * 60);
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1504
1594
|
.max-w-70 {
|
|
1505
1595
|
max-width: calc(var(--spacing) * 70);
|
|
1506
1596
|
}
|
|
@@ -1517,6 +1607,10 @@ export {
|
|
|
1517
1607
|
min-width: calc(var(--spacing) * 0);
|
|
1518
1608
|
}
|
|
1519
1609
|
|
|
1610
|
+
.min-w-36 {
|
|
1611
|
+
min-width: calc(var(--spacing) * 36);
|
|
1612
|
+
}
|
|
1613
|
+
|
|
1520
1614
|
.min-w-\\[90px\\] {
|
|
1521
1615
|
min-width: 90px;
|
|
1522
1616
|
}
|
|
@@ -1533,6 +1627,10 @@ export {
|
|
|
1533
1627
|
flex-shrink: 0;
|
|
1534
1628
|
}
|
|
1535
1629
|
|
|
1630
|
+
.table-fixed {
|
|
1631
|
+
table-layout: fixed;
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1536
1634
|
.border-collapse {
|
|
1537
1635
|
border-collapse: collapse;
|
|
1538
1636
|
}
|
|
@@ -1552,6 +1650,10 @@ export {
|
|
|
1552
1650
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1553
1651
|
}
|
|
1554
1652
|
|
|
1653
|
+
.scale-\\[0\\.98\\] {
|
|
1654
|
+
scale: .98;
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1555
1657
|
.transform {
|
|
1556
1658
|
transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
|
|
1557
1659
|
}
|
|
@@ -1572,6 +1674,10 @@ export {
|
|
|
1572
1674
|
cursor: pointer;
|
|
1573
1675
|
}
|
|
1574
1676
|
|
|
1677
|
+
.touch-none {
|
|
1678
|
+
touch-action: none;
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1575
1681
|
.resize {
|
|
1576
1682
|
resize: both;
|
|
1577
1683
|
}
|
|
@@ -1580,6 +1686,10 @@ export {
|
|
|
1580
1686
|
resize: none;
|
|
1581
1687
|
}
|
|
1582
1688
|
|
|
1689
|
+
.resize-y {
|
|
1690
|
+
resize: vertical;
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1583
1693
|
.appearance-none {
|
|
1584
1694
|
appearance: none;
|
|
1585
1695
|
}
|
|
@@ -1620,6 +1730,10 @@ export {
|
|
|
1620
1730
|
align-items: center;
|
|
1621
1731
|
}
|
|
1622
1732
|
|
|
1733
|
+
.items-stretch {
|
|
1734
|
+
align-items: stretch;
|
|
1735
|
+
}
|
|
1736
|
+
|
|
1623
1737
|
.justify-between {
|
|
1624
1738
|
justify-content: space-between;
|
|
1625
1739
|
}
|
|
@@ -1684,6 +1798,12 @@ export {
|
|
|
1684
1798
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
1685
1799
|
}
|
|
1686
1800
|
|
|
1801
|
+
:where(.space-y-4 > :not(:last-child)) {
|
|
1802
|
+
--tw-space-y-reverse: 0;
|
|
1803
|
+
margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
|
|
1804
|
+
margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
|
|
1805
|
+
}
|
|
1806
|
+
|
|
1687
1807
|
.gap-x-6 {
|
|
1688
1808
|
column-gap: calc(var(--spacing) * 6);
|
|
1689
1809
|
}
|
|
@@ -1706,6 +1826,10 @@ export {
|
|
|
1706
1826
|
overflow: hidden;
|
|
1707
1827
|
}
|
|
1708
1828
|
|
|
1829
|
+
.overflow-x-auto {
|
|
1830
|
+
overflow-x: auto;
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1709
1833
|
.overflow-y-auto {
|
|
1710
1834
|
overflow-y: auto;
|
|
1711
1835
|
}
|
|
@@ -1745,6 +1869,11 @@ export {
|
|
|
1745
1869
|
border-width: 4px;
|
|
1746
1870
|
}
|
|
1747
1871
|
|
|
1872
|
+
.border-t-2 {
|
|
1873
|
+
border-top-style: var(--tw-border-style);
|
|
1874
|
+
border-top-width: 2px;
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1748
1877
|
.border-r {
|
|
1749
1878
|
border-right-style: var(--tw-border-style);
|
|
1750
1879
|
border-right-width: 1px;
|
|
@@ -1774,10 +1903,30 @@ export {
|
|
|
1774
1903
|
border-color: var(--color-black);
|
|
1775
1904
|
}
|
|
1776
1905
|
|
|
1906
|
+
.border-black\\/30 {
|
|
1907
|
+
border-color: #0000004d;
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1911
|
+
.border-black\\/30 {
|
|
1912
|
+
border-color: color-mix(in oklab, var(--color-black) 30%, transparent);
|
|
1913
|
+
}
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1777
1916
|
.border-coral-red {
|
|
1778
1917
|
border-color: var(--color-coral-red);
|
|
1779
1918
|
}
|
|
1780
1919
|
|
|
1920
|
+
.border-coral-red\\/30 {
|
|
1921
|
+
border-color: #ff6b6b4d;
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1925
|
+
.border-coral-red\\/30 {
|
|
1926
|
+
border-color: color-mix(in oklab, var(--color-coral-red) 30%, transparent);
|
|
1927
|
+
}
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1781
1930
|
.border-coral-red\\/40 {
|
|
1782
1931
|
border-color: #ff6b6b66;
|
|
1783
1932
|
}
|
|
@@ -1788,6 +1937,16 @@ export {
|
|
|
1788
1937
|
}
|
|
1789
1938
|
}
|
|
1790
1939
|
|
|
1940
|
+
.border-electric-blue\\/30 {
|
|
1941
|
+
border-color: #3b82f64d;
|
|
1942
|
+
}
|
|
1943
|
+
|
|
1944
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1945
|
+
.border-electric-blue\\/30 {
|
|
1946
|
+
border-color: color-mix(in oklab, var(--color-electric-blue) 30%, transparent);
|
|
1947
|
+
}
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1791
1950
|
.border-electric-blue\\/40 {
|
|
1792
1951
|
border-color: #3b82f666;
|
|
1793
1952
|
}
|
|
@@ -1806,10 +1965,30 @@ export {
|
|
|
1806
1965
|
border-color: var(--color-gray-700);
|
|
1807
1966
|
}
|
|
1808
1967
|
|
|
1968
|
+
.border-hot-pink\\/30 {
|
|
1969
|
+
border-color: #ec48994d;
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1973
|
+
.border-hot-pink\\/30 {
|
|
1974
|
+
border-color: color-mix(in oklab, var(--color-hot-pink) 30%, transparent);
|
|
1975
|
+
}
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1809
1978
|
.border-neon-green {
|
|
1810
1979
|
border-color: var(--color-neon-green);
|
|
1811
1980
|
}
|
|
1812
1981
|
|
|
1982
|
+
.border-neon-green\\/30 {
|
|
1983
|
+
border-color: #84cc164d;
|
|
1984
|
+
}
|
|
1985
|
+
|
|
1986
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1987
|
+
.border-neon-green\\/30 {
|
|
1988
|
+
border-color: color-mix(in oklab, var(--color-neon-green) 30%, transparent);
|
|
1989
|
+
}
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1813
1992
|
.border-neon-green\\/40 {
|
|
1814
1993
|
border-color: #84cc1666;
|
|
1815
1994
|
}
|
|
@@ -1824,6 +2003,16 @@ export {
|
|
|
1824
2003
|
border-color: var(--color-primary);
|
|
1825
2004
|
}
|
|
1826
2005
|
|
|
2006
|
+
.border-primary\\/30 {
|
|
2007
|
+
border-color: #f9b11f4d;
|
|
2008
|
+
}
|
|
2009
|
+
|
|
2010
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2011
|
+
.border-primary\\/30 {
|
|
2012
|
+
border-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
2013
|
+
}
|
|
2014
|
+
}
|
|
2015
|
+
|
|
1827
2016
|
.border-primary\\/40 {
|
|
1828
2017
|
border-color: #f9b11f66;
|
|
1829
2018
|
}
|
|
@@ -1838,6 +2027,16 @@ export {
|
|
|
1838
2027
|
border-color: #0000;
|
|
1839
2028
|
}
|
|
1840
2029
|
|
|
2030
|
+
.border-vibrant-purple\\/30 {
|
|
2031
|
+
border-color: #a855f74d;
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2034
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2035
|
+
.border-vibrant-purple\\/30 {
|
|
2036
|
+
border-color: color-mix(in oklab, var(--color-vibrant-purple) 30%, transparent);
|
|
2037
|
+
}
|
|
2038
|
+
}
|
|
2039
|
+
|
|
1841
2040
|
.border-white\\/5 {
|
|
1842
2041
|
border-color: #ffffff0d;
|
|
1843
2042
|
}
|
|
@@ -1934,6 +2133,16 @@ export {
|
|
|
1934
2133
|
background-color: var(--color-electric-blue);
|
|
1935
2134
|
}
|
|
1936
2135
|
|
|
2136
|
+
.bg-electric-blue\\/10 {
|
|
2137
|
+
background-color: #3b82f61a;
|
|
2138
|
+
}
|
|
2139
|
+
|
|
2140
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2141
|
+
.bg-electric-blue\\/10 {
|
|
2142
|
+
background-color: color-mix(in oklab, var(--color-electric-blue) 10%, transparent);
|
|
2143
|
+
}
|
|
2144
|
+
}
|
|
2145
|
+
|
|
1937
2146
|
.bg-electric-blue\\/20 {
|
|
1938
2147
|
background-color: #3b82f633;
|
|
1939
2148
|
}
|
|
@@ -1948,6 +2157,16 @@ export {
|
|
|
1948
2157
|
background-color: var(--color-hot-pink);
|
|
1949
2158
|
}
|
|
1950
2159
|
|
|
2160
|
+
.bg-hot-pink\\/10 {
|
|
2161
|
+
background-color: #ec48991a;
|
|
2162
|
+
}
|
|
2163
|
+
|
|
2164
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2165
|
+
.bg-hot-pink\\/10 {
|
|
2166
|
+
background-color: color-mix(in oklab, var(--color-hot-pink) 10%, transparent);
|
|
2167
|
+
}
|
|
2168
|
+
}
|
|
2169
|
+
|
|
1951
2170
|
.bg-neon-green {
|
|
1952
2171
|
background-color: var(--color-neon-green);
|
|
1953
2172
|
}
|
|
@@ -2016,6 +2235,16 @@ export {
|
|
|
2016
2235
|
}
|
|
2017
2236
|
}
|
|
2018
2237
|
|
|
2238
|
+
.bg-primary\\/30 {
|
|
2239
|
+
background-color: #f9b11f4d;
|
|
2240
|
+
}
|
|
2241
|
+
|
|
2242
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2243
|
+
.bg-primary\\/30 {
|
|
2244
|
+
background-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
|
|
2245
|
+
}
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2019
2248
|
.bg-transparent {
|
|
2020
2249
|
background-color: #0000;
|
|
2021
2250
|
}
|
|
@@ -2024,6 +2253,16 @@ export {
|
|
|
2024
2253
|
background-color: var(--color-vibrant-purple);
|
|
2025
2254
|
}
|
|
2026
2255
|
|
|
2256
|
+
.bg-vibrant-purple\\/10 {
|
|
2257
|
+
background-color: #a855f71a;
|
|
2258
|
+
}
|
|
2259
|
+
|
|
2260
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2261
|
+
.bg-vibrant-purple\\/10 {
|
|
2262
|
+
background-color: color-mix(in oklab, var(--color-vibrant-purple) 10%, transparent);
|
|
2263
|
+
}
|
|
2264
|
+
}
|
|
2265
|
+
|
|
2027
2266
|
.bg-white {
|
|
2028
2267
|
background-color: var(--color-white);
|
|
2029
2268
|
}
|
|
@@ -2100,6 +2339,10 @@ export {
|
|
|
2100
2339
|
padding: calc(var(--spacing) * 3);
|
|
2101
2340
|
}
|
|
2102
2341
|
|
|
2342
|
+
.p-3\\.5 {
|
|
2343
|
+
padding: calc(var(--spacing) * 3.5);
|
|
2344
|
+
}
|
|
2345
|
+
|
|
2103
2346
|
.p-4 {
|
|
2104
2347
|
padding: calc(var(--spacing) * 4);
|
|
2105
2348
|
}
|
|
@@ -2164,6 +2407,10 @@ export {
|
|
|
2164
2407
|
padding-block: calc(var(--spacing) * 3);
|
|
2165
2408
|
}
|
|
2166
2409
|
|
|
2410
|
+
.py-4 {
|
|
2411
|
+
padding-block: calc(var(--spacing) * 4);
|
|
2412
|
+
}
|
|
2413
|
+
|
|
2167
2414
|
.py-6 {
|
|
2168
2415
|
padding-block: calc(var(--spacing) * 6);
|
|
2169
2416
|
}
|
|
@@ -2172,6 +2419,10 @@ export {
|
|
|
2172
2419
|
padding-block: calc(var(--spacing) * 8);
|
|
2173
2420
|
}
|
|
2174
2421
|
|
|
2422
|
+
.pt-3 {
|
|
2423
|
+
padding-top: calc(var(--spacing) * 3);
|
|
2424
|
+
}
|
|
2425
|
+
|
|
2175
2426
|
.pr-1 {
|
|
2176
2427
|
padding-right: calc(var(--spacing) * 1);
|
|
2177
2428
|
}
|
|
@@ -2196,6 +2447,14 @@ export {
|
|
|
2196
2447
|
padding-right: calc(var(--spacing) * 11);
|
|
2197
2448
|
}
|
|
2198
2449
|
|
|
2450
|
+
.pb-1 {
|
|
2451
|
+
padding-bottom: calc(var(--spacing) * 1);
|
|
2452
|
+
}
|
|
2453
|
+
|
|
2454
|
+
.pb-2 {
|
|
2455
|
+
padding-bottom: calc(var(--spacing) * 2);
|
|
2456
|
+
}
|
|
2457
|
+
|
|
2199
2458
|
.pl-1\\.5 {
|
|
2200
2459
|
padding-left: calc(var(--spacing) * 1.5);
|
|
2201
2460
|
}
|
|
@@ -2236,6 +2495,10 @@ export {
|
|
|
2236
2495
|
vertical-align: middle;
|
|
2237
2496
|
}
|
|
2238
2497
|
|
|
2498
|
+
.align-top {
|
|
2499
|
+
vertical-align: top;
|
|
2500
|
+
}
|
|
2501
|
+
|
|
2239
2502
|
.font-mono {
|
|
2240
2503
|
font-family: var(--font-mono);
|
|
2241
2504
|
}
|
|
@@ -2297,6 +2560,11 @@ export {
|
|
|
2297
2560
|
line-height: calc(var(--spacing) * 6);
|
|
2298
2561
|
}
|
|
2299
2562
|
|
|
2563
|
+
.leading-7 {
|
|
2564
|
+
--tw-leading: calc(var(--spacing) * 7);
|
|
2565
|
+
line-height: calc(var(--spacing) * 7);
|
|
2566
|
+
}
|
|
2567
|
+
|
|
2300
2568
|
.leading-none {
|
|
2301
2569
|
--tw-leading: 1;
|
|
2302
2570
|
line-height: 1;
|
|
@@ -2327,6 +2595,10 @@ export {
|
|
|
2327
2595
|
letter-spacing: var(--tracking-widest);
|
|
2328
2596
|
}
|
|
2329
2597
|
|
|
2598
|
+
.\\[overflow-wrap\\:anywhere\\] {
|
|
2599
|
+
overflow-wrap: anywhere;
|
|
2600
|
+
}
|
|
2601
|
+
|
|
2330
2602
|
.break-all {
|
|
2331
2603
|
word-break: break-all;
|
|
2332
2604
|
}
|
|
@@ -2523,6 +2795,10 @@ export {
|
|
|
2523
2795
|
opacity: .7;
|
|
2524
2796
|
}
|
|
2525
2797
|
|
|
2798
|
+
.opacity-100 {
|
|
2799
|
+
opacity: 1;
|
|
2800
|
+
}
|
|
2801
|
+
|
|
2526
2802
|
.shadow-hard {
|
|
2527
2803
|
--tw-shadow: 4px 4px 0 0 var(--tw-shadow-color, #000);
|
|
2528
2804
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -2766,6 +3042,11 @@ export {
|
|
|
2766
3042
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2767
3043
|
}
|
|
2768
3044
|
|
|
3045
|
+
.focus\\:translate-x-\\[2px\\]:focus {
|
|
3046
|
+
--tw-translate-x: 2px;
|
|
3047
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
3048
|
+
}
|
|
3049
|
+
|
|
2769
3050
|
.focus\\:translate-x-\\[4px\\]:focus {
|
|
2770
3051
|
--tw-translate-x: 4px;
|
|
2771
3052
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2776,6 +3057,11 @@ export {
|
|
|
2776
3057
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2777
3058
|
}
|
|
2778
3059
|
|
|
3060
|
+
.focus\\:translate-y-\\[2px\\]:focus {
|
|
3061
|
+
--tw-translate-y: 2px;
|
|
3062
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
3063
|
+
}
|
|
3064
|
+
|
|
2779
3065
|
.focus\\:translate-y-\\[4px\\]:focus {
|
|
2780
3066
|
--tw-translate-y: 4px;
|
|
2781
3067
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -2852,6 +3138,10 @@ export {
|
|
|
2852
3138
|
.xl\\:grid-cols-3 {
|
|
2853
3139
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2854
3140
|
}
|
|
3141
|
+
|
|
3142
|
+
.xl\\:grid-cols-\\[minmax\\(0\\,1fr\\)_minmax\\(0\\,1fr\\)_320px\\] {
|
|
3143
|
+
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
|
|
3144
|
+
}
|
|
2855
3145
|
}
|
|
2856
3146
|
}
|
|
2857
3147
|
|