@keadex/mina-live 2.9.0 → 2.10.0
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/index.css +215 -4
- package/index.js +1 -1
- package/mina_live_bg.wasm +0 -0
- package/mina_live_worker_wasm.js +1 -1
- package/package.json +4 -1
- package/static/keadex-mina/locales/en/translation.json +21 -3
package/index.css
CHANGED
|
@@ -967,6 +967,8 @@ video {
|
|
|
967
967
|
right: 0.25rem;
|
|
968
968
|
}.right-1\.5 {
|
|
969
969
|
right: 0.375rem;
|
|
970
|
+
}.right-2 {
|
|
971
|
+
right: 0.5rem;
|
|
970
972
|
}.right-3 {
|
|
971
973
|
right: 0.75rem;
|
|
972
974
|
}.right-5 {
|
|
@@ -981,8 +983,14 @@ video {
|
|
|
981
983
|
top: 0.25rem;
|
|
982
984
|
}.top-1\/2 {
|
|
983
985
|
top: 50%;
|
|
986
|
+
}.top-10 {
|
|
987
|
+
top: 2.5rem;
|
|
988
|
+
}.top-14 {
|
|
989
|
+
top: 3.5rem;
|
|
984
990
|
}.top-2 {
|
|
985
991
|
top: 0.5rem;
|
|
992
|
+
}.top-20 {
|
|
993
|
+
top: 5rem;
|
|
986
994
|
}.top-3 {
|
|
987
995
|
top: 0.75rem;
|
|
988
996
|
}.top-8 {
|
|
@@ -1053,6 +1061,8 @@ video {
|
|
|
1053
1061
|
margin: 0px;
|
|
1054
1062
|
}.m-1 {
|
|
1055
1063
|
margin: 0.25rem;
|
|
1064
|
+
}.m-auto {
|
|
1065
|
+
margin: auto;
|
|
1056
1066
|
}.\!my-0 {
|
|
1057
1067
|
margin-top: 0px !important;
|
|
1058
1068
|
margin-bottom: 0px !important;
|
|
@@ -1100,8 +1110,12 @@ video {
|
|
|
1100
1110
|
margin-bottom: auto;
|
|
1101
1111
|
}.\!mb-0 {
|
|
1102
1112
|
margin-bottom: 0px !important;
|
|
1113
|
+
}.\!mb-2 {
|
|
1114
|
+
margin-bottom: 0.5rem !important;
|
|
1103
1115
|
}.\!mr-3 {
|
|
1104
1116
|
margin-right: 0.75rem !important;
|
|
1117
|
+
}.\!mt-3 {
|
|
1118
|
+
margin-top: 0.75rem !important;
|
|
1105
1119
|
}.\!mt-4 {
|
|
1106
1120
|
margin-top: 1rem !important;
|
|
1107
1121
|
}.-ml-\[1\.5rem\] {
|
|
@@ -1188,8 +1202,8 @@ video {
|
|
|
1188
1202
|
margin-top: 0.5rem;
|
|
1189
1203
|
}.mt-2\.5 {
|
|
1190
1204
|
margin-top: 0.625rem;
|
|
1191
|
-
}.mt-
|
|
1192
|
-
margin-top:
|
|
1205
|
+
}.mt-28 {
|
|
1206
|
+
margin-top: 7rem;
|
|
1193
1207
|
}.mt-3 {
|
|
1194
1208
|
margin-top: 0.75rem;
|
|
1195
1209
|
}.mt-4 {
|
|
@@ -1380,6 +1394,8 @@ video {
|
|
|
1380
1394
|
width: 9rem;
|
|
1381
1395
|
}.w-4 {
|
|
1382
1396
|
width: 1rem;
|
|
1397
|
+
}.w-40 {
|
|
1398
|
+
width: 10rem;
|
|
1383
1399
|
}.w-48 {
|
|
1384
1400
|
width: 12rem;
|
|
1385
1401
|
}.w-5 {
|
|
@@ -1464,6 +1480,8 @@ video {
|
|
|
1464
1480
|
width: 1px;
|
|
1465
1481
|
}.w-screen {
|
|
1466
1482
|
width: 100vw;
|
|
1483
|
+
}.\!min-w-0 {
|
|
1484
|
+
min-width: 0px !important;
|
|
1467
1485
|
}.min-w-0 {
|
|
1468
1486
|
min-width: 0px;
|
|
1469
1487
|
}.min-w-\[100px\] {
|
|
@@ -1667,6 +1685,15 @@ video {
|
|
|
1667
1685
|
}
|
|
1668
1686
|
}.animate-\[spinner-grow_0\.75s_linear_infinite\] {
|
|
1669
1687
|
animation: spinner-grow 0.75s linear infinite;
|
|
1688
|
+
}@keyframes bounce {0%, 100% {
|
|
1689
|
+
transform: translateY(-25%);
|
|
1690
|
+
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1691
|
+
}50% {
|
|
1692
|
+
transform: none;
|
|
1693
|
+
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1694
|
+
}
|
|
1695
|
+
}.animate-bounce {
|
|
1696
|
+
animation: bounce 1s infinite;
|
|
1670
1697
|
}@keyframes spin {to {
|
|
1671
1698
|
transform: rotate(360deg);
|
|
1672
1699
|
}
|
|
@@ -1839,6 +1866,14 @@ video {
|
|
|
1839
1866
|
}.rounded-t-md {
|
|
1840
1867
|
border-top-left-radius: 0.375rem;
|
|
1841
1868
|
border-top-right-radius: 0.375rem;
|
|
1869
|
+
}.rounded-ee-none {
|
|
1870
|
+
border-end-end-radius: 0px;
|
|
1871
|
+
}.rounded-es-none {
|
|
1872
|
+
border-end-start-radius: 0px;
|
|
1873
|
+
}.rounded-se-none {
|
|
1874
|
+
border-start-end-radius: 0px;
|
|
1875
|
+
}.rounded-ss-none {
|
|
1876
|
+
border-start-start-radius: 0px;
|
|
1842
1877
|
}.\!border-0 {
|
|
1843
1878
|
border-width: 0px !important;
|
|
1844
1879
|
}.\!border-\[3px\] {
|
|
@@ -1866,6 +1901,8 @@ video {
|
|
|
1866
1901
|
border-bottom-width: 0px;
|
|
1867
1902
|
}.border-b-2 {
|
|
1868
1903
|
border-bottom-width: 2px;
|
|
1904
|
+
}.border-b-\[0\.5px\] {
|
|
1905
|
+
border-bottom-width: 0.5px;
|
|
1869
1906
|
}.border-l-0 {
|
|
1870
1907
|
border-left-width: 0px;
|
|
1871
1908
|
}.border-l-2 {
|
|
@@ -1930,6 +1967,9 @@ video {
|
|
|
1930
1967
|
}.border-white {
|
|
1931
1968
|
--tw-border-opacity: 1;
|
|
1932
1969
|
border-color: rgb(255 255 255 / var(--tw-border-opacity));
|
|
1970
|
+
}.border-b-secondary {
|
|
1971
|
+
--tw-border-opacity: 1;
|
|
1972
|
+
border-bottom-color: rgb(64 64 64 / var(--tw-border-opacity));
|
|
1933
1973
|
}.border-r-transparent {
|
|
1934
1974
|
border-right-color: transparent;
|
|
1935
1975
|
}.border-t-transparent {
|
|
@@ -1939,6 +1979,9 @@ video {
|
|
|
1939
1979
|
}.\!bg-\[\#858585\] {
|
|
1940
1980
|
--tw-bg-opacity: 1 !important;
|
|
1941
1981
|
background-color: rgb(133 133 133 / var(--tw-bg-opacity)) !important;
|
|
1982
|
+
}.\!bg-black {
|
|
1983
|
+
--tw-bg-opacity: 1 !important;
|
|
1984
|
+
background-color: rgb(0 0 0 / var(--tw-bg-opacity)) !important;
|
|
1942
1985
|
}.\!bg-danger-100 {
|
|
1943
1986
|
--tw-bg-opacity: 1 !important;
|
|
1944
1987
|
background-color: rgb(250 229 233 / var(--tw-bg-opacity)) !important;
|
|
@@ -1983,6 +2026,12 @@ video {
|
|
|
1983
2026
|
}.bg-brand1 {
|
|
1984
2027
|
--tw-bg-opacity: 1;
|
|
1985
2028
|
background-color: rgb(56 103 177 / var(--tw-bg-opacity));
|
|
2029
|
+
}.bg-brand2 {
|
|
2030
|
+
--tw-bg-opacity: 1;
|
|
2031
|
+
background-color: rgb(175 183 195 / var(--tw-bg-opacity));
|
|
2032
|
+
}.bg-brand3 {
|
|
2033
|
+
--tw-bg-opacity: 1;
|
|
2034
|
+
background-color: rgb(214 226 244 / var(--tw-bg-opacity));
|
|
1986
2035
|
}.bg-current {
|
|
1987
2036
|
background-color: currentColor;
|
|
1988
2037
|
}.bg-dark-brand1 {
|
|
@@ -2078,6 +2127,9 @@ video {
|
|
|
2078
2127
|
padding: 5px;
|
|
2079
2128
|
}.p-\[auto\] {
|
|
2080
2129
|
padding: auto;
|
|
2130
|
+
}.\!px-0 {
|
|
2131
|
+
padding-left: 0px !important;
|
|
2132
|
+
padding-right: 0px !important;
|
|
2081
2133
|
}.\!py-0 {
|
|
2082
2134
|
padding-top: 0px !important;
|
|
2083
2135
|
padding-bottom: 0px !important;
|
|
@@ -2182,6 +2234,8 @@ video {
|
|
|
2182
2234
|
padding-bottom: 5px;
|
|
2183
2235
|
}.pb-0 {
|
|
2184
2236
|
padding-bottom: 0px;
|
|
2237
|
+
}.pb-1 {
|
|
2238
|
+
padding-bottom: 0.25rem;
|
|
2185
2239
|
}.pb-3 {
|
|
2186
2240
|
padding-bottom: 0.75rem;
|
|
2187
2241
|
}.pb-3\.5 {
|
|
@@ -2244,6 +2298,8 @@ video {
|
|
|
2244
2298
|
text-align: center;
|
|
2245
2299
|
}.text-right {
|
|
2246
2300
|
text-align: right;
|
|
2301
|
+
}.align-top {
|
|
2302
|
+
vertical-align: top;
|
|
2247
2303
|
}.align-middle {
|
|
2248
2304
|
vertical-align: middle;
|
|
2249
2305
|
}.align-bottom {
|
|
@@ -2252,12 +2308,18 @@ video {
|
|
|
2252
2308
|
vertical-align: -0.125em;
|
|
2253
2309
|
}.font-mono {
|
|
2254
2310
|
font-family: ui-monospace, monospace;
|
|
2311
|
+
}.\!text-lg {
|
|
2312
|
+
font-size: 1.125rem !important;
|
|
2313
|
+
line-height: 1.75rem !important;
|
|
2255
2314
|
}.\!text-xl {
|
|
2256
2315
|
font-size: 1.25rem !important;
|
|
2257
2316
|
line-height: 1.75rem !important;
|
|
2258
2317
|
}.text-2xl {
|
|
2259
2318
|
font-size: 1.5rem;
|
|
2260
2319
|
line-height: 2rem;
|
|
2320
|
+
}.text-3xl {
|
|
2321
|
+
font-size: 1.875rem;
|
|
2322
|
+
line-height: 2.25rem;
|
|
2261
2323
|
}.text-4xl {
|
|
2262
2324
|
font-size: 2.25rem;
|
|
2263
2325
|
line-height: 2.5rem;
|
|
@@ -2654,6 +2716,10 @@ video {
|
|
|
2654
2716
|
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
2655
2717
|
}.\!\[clip\:rect\(0\2c 0\2c 0\2c 0\)\] {
|
|
2656
2718
|
clip: rect(0,0,0,0) !important;
|
|
2719
|
+
}.\[animation-delay\:-0\.15s\] {
|
|
2720
|
+
animation-delay: -0.15s;
|
|
2721
|
+
}.\[animation-delay\:-0\.3s\] {
|
|
2722
|
+
animation-delay: -0.3s;
|
|
2657
2723
|
}.\[direction\:ltr\] {
|
|
2658
2724
|
direction: ltr;
|
|
2659
2725
|
}.\[overflow-anchor\:none\] {
|
|
@@ -2749,6 +2815,8 @@ video {
|
|
|
2749
2815
|
border-bottom-right-radius: 0.25rem;
|
|
2750
2816
|
}.last\:rounded-tr:last-child {
|
|
2751
2817
|
border-top-right-radius: 0.25rem;
|
|
2818
|
+
}.last\:border-b-0:last-child {
|
|
2819
|
+
border-bottom-width: 0px;
|
|
2752
2820
|
}.checked\:\!border-\[\#14a44d\]:checked {
|
|
2753
2821
|
--tw-border-opacity: 1 !important;
|
|
2754
2822
|
border-color: rgb(20 164 77 / var(--tw-border-opacity)) !important;
|
|
@@ -2877,6 +2945,9 @@ video {
|
|
|
2877
2945
|
}.hover\:\!bg-\[\#eee\]:hover {
|
|
2878
2946
|
--tw-bg-opacity: 1 !important;
|
|
2879
2947
|
background-color: rgb(238 238 238 / var(--tw-bg-opacity)) !important;
|
|
2948
|
+
}.hover\:\!bg-dark-primary:hover {
|
|
2949
|
+
--tw-bg-opacity: 1 !important;
|
|
2950
|
+
background-color: rgb(24 24 24 / var(--tw-bg-opacity)) !important;
|
|
2880
2951
|
}.hover\:\!bg-red-600:hover {
|
|
2881
2952
|
--tw-bg-opacity: 1 !important;
|
|
2882
2953
|
background-color: rgb(220 38 38 / var(--tw-bg-opacity)) !important;
|
|
@@ -3168,6 +3239,9 @@ video {
|
|
|
3168
3239
|
color: rgb(203 213 225 / var(--tw-text-opacity));
|
|
3169
3240
|
}.disabled\:opacity-50:disabled {
|
|
3170
3241
|
opacity: 0.5;
|
|
3242
|
+
}.disabled\:hover\:\!bg-black:hover:disabled {
|
|
3243
|
+
--tw-bg-opacity: 1 !important;
|
|
3244
|
+
background-color: rgb(0 0 0 / var(--tw-bg-opacity)) !important;
|
|
3171
3245
|
}.disabled\:hover\:bg-transparent:hover:disabled {
|
|
3172
3246
|
background-color: transparent;
|
|
3173
3247
|
}.disabled\:hover\:text-accent-secondary:hover:disabled {
|
|
@@ -6360,6 +6434,9 @@ body{
|
|
|
6360
6434
|
.static{
|
|
6361
6435
|
position: static;
|
|
6362
6436
|
}
|
|
6437
|
+
.\!fixed{
|
|
6438
|
+
position: fixed !important;
|
|
6439
|
+
}
|
|
6363
6440
|
.fixed{
|
|
6364
6441
|
position: fixed;
|
|
6365
6442
|
}
|
|
@@ -6390,9 +6467,15 @@ body{
|
|
|
6390
6467
|
.left-1\/2{
|
|
6391
6468
|
left: 50%;
|
|
6392
6469
|
}
|
|
6470
|
+
.left-3{
|
|
6471
|
+
left: 0.75rem;
|
|
6472
|
+
}
|
|
6393
6473
|
.right-0{
|
|
6394
6474
|
right: 0px;
|
|
6395
6475
|
}
|
|
6476
|
+
.right-2{
|
|
6477
|
+
right: 0.5rem;
|
|
6478
|
+
}
|
|
6396
6479
|
.right-5{
|
|
6397
6480
|
right: 1.25rem;
|
|
6398
6481
|
}
|
|
@@ -6402,6 +6485,15 @@ body{
|
|
|
6402
6485
|
.top-1\/2{
|
|
6403
6486
|
top: 50%;
|
|
6404
6487
|
}
|
|
6488
|
+
.top-10{
|
|
6489
|
+
top: 2.5rem;
|
|
6490
|
+
}
|
|
6491
|
+
.top-14{
|
|
6492
|
+
top: 3.5rem;
|
|
6493
|
+
}
|
|
6494
|
+
.top-20{
|
|
6495
|
+
top: 5rem;
|
|
6496
|
+
}
|
|
6405
6497
|
.top-3{
|
|
6406
6498
|
top: 0.75rem;
|
|
6407
6499
|
}
|
|
@@ -6423,6 +6515,9 @@ body{
|
|
|
6423
6515
|
.m-0{
|
|
6424
6516
|
margin: 0px;
|
|
6425
6517
|
}
|
|
6518
|
+
.m-auto{
|
|
6519
|
+
margin: auto;
|
|
6520
|
+
}
|
|
6426
6521
|
.\!my-0{
|
|
6427
6522
|
margin-top: 0px !important;
|
|
6428
6523
|
margin-bottom: 0px !important;
|
|
@@ -6454,6 +6549,12 @@ body{
|
|
|
6454
6549
|
.\!mb-0{
|
|
6455
6550
|
margin-bottom: 0px !important;
|
|
6456
6551
|
}
|
|
6552
|
+
.\!mb-2{
|
|
6553
|
+
margin-bottom: 0.5rem !important;
|
|
6554
|
+
}
|
|
6555
|
+
.\!mt-3{
|
|
6556
|
+
margin-top: 0.75rem !important;
|
|
6557
|
+
}
|
|
6457
6558
|
.\!mt-4{
|
|
6458
6559
|
margin-top: 1rem !important;
|
|
6459
6560
|
}
|
|
@@ -6466,6 +6567,9 @@ body{
|
|
|
6466
6567
|
.mb-2{
|
|
6467
6568
|
margin-bottom: 0.5rem;
|
|
6468
6569
|
}
|
|
6570
|
+
.mb-3{
|
|
6571
|
+
margin-bottom: 0.75rem;
|
|
6572
|
+
}
|
|
6469
6573
|
.mb-5{
|
|
6470
6574
|
margin-bottom: 1.25rem;
|
|
6471
6575
|
}
|
|
@@ -6517,8 +6621,8 @@ body{
|
|
|
6517
6621
|
.mt-2{
|
|
6518
6622
|
margin-top: 0.5rem;
|
|
6519
6623
|
}
|
|
6520
|
-
.mt-
|
|
6521
|
-
margin-top:
|
|
6624
|
+
.mt-28{
|
|
6625
|
+
margin-top: 7rem;
|
|
6522
6626
|
}
|
|
6523
6627
|
.mt-3{
|
|
6524
6628
|
margin-top: 0.75rem;
|
|
@@ -6605,6 +6709,9 @@ body{
|
|
|
6605
6709
|
.\!w-4{
|
|
6606
6710
|
width: 1rem !important;
|
|
6607
6711
|
}
|
|
6712
|
+
.w-1\/2{
|
|
6713
|
+
width: 50%;
|
|
6714
|
+
}
|
|
6608
6715
|
.w-10{
|
|
6609
6716
|
width: 2.5rem;
|
|
6610
6717
|
}
|
|
@@ -6620,6 +6727,9 @@ body{
|
|
|
6620
6727
|
.w-36{
|
|
6621
6728
|
width: 9rem;
|
|
6622
6729
|
}
|
|
6730
|
+
.w-40{
|
|
6731
|
+
width: 10rem;
|
|
6732
|
+
}
|
|
6623
6733
|
.w-48{
|
|
6624
6734
|
width: 12rem;
|
|
6625
6735
|
}
|
|
@@ -6648,6 +6758,9 @@ body{
|
|
|
6648
6758
|
.w-full{
|
|
6649
6759
|
width: 100%;
|
|
6650
6760
|
}
|
|
6761
|
+
.\!min-w-0{
|
|
6762
|
+
min-width: 0px !important;
|
|
6763
|
+
}
|
|
6651
6764
|
.max-w-\[300px\]{
|
|
6652
6765
|
max-width: 300px;
|
|
6653
6766
|
}
|
|
@@ -6692,6 +6805,19 @@ body{
|
|
|
6692
6805
|
.transform{
|
|
6693
6806
|
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));
|
|
6694
6807
|
}
|
|
6808
|
+
@keyframes bounce{
|
|
6809
|
+
0%, 100%{
|
|
6810
|
+
transform: translateY(-25%);
|
|
6811
|
+
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
6812
|
+
}
|
|
6813
|
+
50%{
|
|
6814
|
+
transform: none;
|
|
6815
|
+
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
6816
|
+
}
|
|
6817
|
+
}
|
|
6818
|
+
.animate-bounce{
|
|
6819
|
+
animation: bounce 1s infinite;
|
|
6820
|
+
}
|
|
6695
6821
|
@keyframes spin{
|
|
6696
6822
|
to{
|
|
6697
6823
|
transform: rotate(360deg);
|
|
@@ -6730,6 +6856,9 @@ body{
|
|
|
6730
6856
|
.content-center{
|
|
6731
6857
|
align-content: center;
|
|
6732
6858
|
}
|
|
6859
|
+
.items-end{
|
|
6860
|
+
align-items: flex-end;
|
|
6861
|
+
}
|
|
6733
6862
|
.items-center{
|
|
6734
6863
|
align-items: center;
|
|
6735
6864
|
}
|
|
@@ -6743,6 +6872,11 @@ body{
|
|
|
6743
6872
|
-moz-column-gap: 1rem;
|
|
6744
6873
|
column-gap: 1rem;
|
|
6745
6874
|
}
|
|
6875
|
+
.space-x-2 > :not([hidden]) ~ :not([hidden]){
|
|
6876
|
+
--tw-space-x-reverse: 0;
|
|
6877
|
+
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
6878
|
+
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
6879
|
+
}
|
|
6746
6880
|
.self-start{
|
|
6747
6881
|
align-self: flex-start;
|
|
6748
6882
|
}
|
|
@@ -6755,6 +6889,9 @@ body{
|
|
|
6755
6889
|
.overflow-x-auto{
|
|
6756
6890
|
overflow-x: auto;
|
|
6757
6891
|
}
|
|
6892
|
+
.overflow-y-auto{
|
|
6893
|
+
overflow-y: auto;
|
|
6894
|
+
}
|
|
6758
6895
|
.truncate{
|
|
6759
6896
|
overflow: hidden;
|
|
6760
6897
|
text-overflow: ellipsis;
|
|
@@ -6778,6 +6915,18 @@ body{
|
|
|
6778
6915
|
.rounded-md{
|
|
6779
6916
|
border-radius: 0.375rem;
|
|
6780
6917
|
}
|
|
6918
|
+
.rounded-ee-none{
|
|
6919
|
+
border-end-end-radius: 0px;
|
|
6920
|
+
}
|
|
6921
|
+
.rounded-es-none{
|
|
6922
|
+
border-end-start-radius: 0px;
|
|
6923
|
+
}
|
|
6924
|
+
.rounded-se-none{
|
|
6925
|
+
border-start-end-radius: 0px;
|
|
6926
|
+
}
|
|
6927
|
+
.rounded-ss-none{
|
|
6928
|
+
border-start-start-radius: 0px;
|
|
6929
|
+
}
|
|
6781
6930
|
.border{
|
|
6782
6931
|
border-width: 1px;
|
|
6783
6932
|
}
|
|
@@ -6787,6 +6936,9 @@ body{
|
|
|
6787
6936
|
.border-b-0{
|
|
6788
6937
|
border-bottom-width: 0px;
|
|
6789
6938
|
}
|
|
6939
|
+
.border-b-\[0\.5px\]{
|
|
6940
|
+
border-bottom-width: 0.5px;
|
|
6941
|
+
}
|
|
6790
6942
|
.border-l-0{
|
|
6791
6943
|
border-left-width: 0px;
|
|
6792
6944
|
}
|
|
@@ -6803,6 +6955,14 @@ body{
|
|
|
6803
6955
|
--tw-border-opacity: 1;
|
|
6804
6956
|
border-color: rgb(56 103 177 / var(--tw-border-opacity));
|
|
6805
6957
|
}
|
|
6958
|
+
.border-b-secondary{
|
|
6959
|
+
--tw-border-opacity: 1;
|
|
6960
|
+
border-bottom-color: rgb(64 64 64 / var(--tw-border-opacity));
|
|
6961
|
+
}
|
|
6962
|
+
.\!bg-black{
|
|
6963
|
+
--tw-bg-opacity: 1 !important;
|
|
6964
|
+
background-color: rgb(0 0 0 / var(--tw-bg-opacity)) !important;
|
|
6965
|
+
}
|
|
6806
6966
|
.\!bg-green-700{
|
|
6807
6967
|
--tw-bg-opacity: 1 !important;
|
|
6808
6968
|
background-color: rgb(21 128 61 / var(--tw-bg-opacity)) !important;
|
|
@@ -6810,6 +6970,18 @@ body{
|
|
|
6810
6970
|
.\!bg-transparent{
|
|
6811
6971
|
background-color: transparent !important;
|
|
6812
6972
|
}
|
|
6973
|
+
.bg-brand1{
|
|
6974
|
+
--tw-bg-opacity: 1;
|
|
6975
|
+
background-color: rgb(56 103 177 / var(--tw-bg-opacity));
|
|
6976
|
+
}
|
|
6977
|
+
.bg-brand2{
|
|
6978
|
+
--tw-bg-opacity: 1;
|
|
6979
|
+
background-color: rgb(175 183 195 / var(--tw-bg-opacity));
|
|
6980
|
+
}
|
|
6981
|
+
.bg-brand3{
|
|
6982
|
+
--tw-bg-opacity: 1;
|
|
6983
|
+
background-color: rgb(214 226 244 / var(--tw-bg-opacity));
|
|
6984
|
+
}
|
|
6813
6985
|
.bg-dark-brand1{
|
|
6814
6986
|
--tw-bg-opacity: 1;
|
|
6815
6987
|
background-color: rgb(27 53 95 / var(--tw-bg-opacity));
|
|
@@ -6863,6 +7035,10 @@ body{
|
|
|
6863
7035
|
.p-4{
|
|
6864
7036
|
padding: 1rem;
|
|
6865
7037
|
}
|
|
7038
|
+
.\!px-0{
|
|
7039
|
+
padding-left: 0px !important;
|
|
7040
|
+
padding-right: 0px !important;
|
|
7041
|
+
}
|
|
6866
7042
|
.px-1{
|
|
6867
7043
|
padding-left: 0.25rem;
|
|
6868
7044
|
padding-right: 0.25rem;
|
|
@@ -6894,6 +7070,9 @@ body{
|
|
|
6894
7070
|
.pb-0{
|
|
6895
7071
|
padding-bottom: 0px;
|
|
6896
7072
|
}
|
|
7073
|
+
.pb-1{
|
|
7074
|
+
padding-bottom: 0.25rem;
|
|
7075
|
+
}
|
|
6897
7076
|
.pb-4{
|
|
6898
7077
|
padding-bottom: 1rem;
|
|
6899
7078
|
}
|
|
@@ -6924,9 +7103,16 @@ body{
|
|
|
6924
7103
|
.text-center{
|
|
6925
7104
|
text-align: center;
|
|
6926
7105
|
}
|
|
7106
|
+
.align-top{
|
|
7107
|
+
vertical-align: top;
|
|
7108
|
+
}
|
|
6927
7109
|
.font-mono{
|
|
6928
7110
|
font-family: ui-monospace, monospace;
|
|
6929
7111
|
}
|
|
7112
|
+
.\!text-lg{
|
|
7113
|
+
font-size: 1.125rem !important;
|
|
7114
|
+
line-height: 1.75rem !important;
|
|
7115
|
+
}
|
|
6930
7116
|
.\!text-xl{
|
|
6931
7117
|
font-size: 1.25rem !important;
|
|
6932
7118
|
line-height: 1.75rem !important;
|
|
@@ -6935,6 +7121,10 @@ body{
|
|
|
6935
7121
|
font-size: 1.5rem;
|
|
6936
7122
|
line-height: 2rem;
|
|
6937
7123
|
}
|
|
7124
|
+
.text-3xl{
|
|
7125
|
+
font-size: 1.875rem;
|
|
7126
|
+
line-height: 2.25rem;
|
|
7127
|
+
}
|
|
6938
7128
|
.text-4xl{
|
|
6939
7129
|
font-size: 2.25rem;
|
|
6940
7130
|
line-height: 2.5rem;
|
|
@@ -7008,6 +7198,10 @@ body{
|
|
|
7008
7198
|
--tw-text-opacity: 1;
|
|
7009
7199
|
color: rgb(249 115 22 / var(--tw-text-opacity));
|
|
7010
7200
|
}
|
|
7201
|
+
.text-white{
|
|
7202
|
+
--tw-text-opacity: 1;
|
|
7203
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
7204
|
+
}
|
|
7011
7205
|
.text-yellow-500{
|
|
7012
7206
|
--tw-text-opacity: 1;
|
|
7013
7207
|
color: rgb(234 179 8 / var(--tw-text-opacity));
|
|
@@ -7069,11 +7263,24 @@ body{
|
|
|
7069
7263
|
.ease-in-out{
|
|
7070
7264
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
7071
7265
|
}
|
|
7266
|
+
.\[animation-delay\:-0\.15s\]{
|
|
7267
|
+
animation-delay: -0.15s;
|
|
7268
|
+
}
|
|
7269
|
+
.\[animation-delay\:-0\.3s\]{
|
|
7270
|
+
animation-delay: -0.3s;
|
|
7271
|
+
}
|
|
7272
|
+
.last\:border-b-0:last-child{
|
|
7273
|
+
border-bottom-width: 0px;
|
|
7274
|
+
}
|
|
7072
7275
|
.hover\:scale-\[100\%\]:hover{
|
|
7073
7276
|
--tw-scale-x: 100%;
|
|
7074
7277
|
--tw-scale-y: 100%;
|
|
7075
7278
|
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));
|
|
7076
7279
|
}
|
|
7280
|
+
.hover\:\!bg-dark-primary:hover{
|
|
7281
|
+
--tw-bg-opacity: 1 !important;
|
|
7282
|
+
background-color: rgb(24 24 24 / var(--tw-bg-opacity)) !important;
|
|
7283
|
+
}
|
|
7077
7284
|
.hover\:\!bg-red-600:hover{
|
|
7078
7285
|
--tw-bg-opacity: 1 !important;
|
|
7079
7286
|
background-color: rgb(220 38 38 / var(--tw-bg-opacity)) !important;
|
|
@@ -7104,6 +7311,10 @@ body{
|
|
|
7104
7311
|
.disabled\:opacity-50:disabled{
|
|
7105
7312
|
opacity: 0.5;
|
|
7106
7313
|
}
|
|
7314
|
+
.disabled\:hover\:\!bg-black:hover:disabled{
|
|
7315
|
+
--tw-bg-opacity: 1 !important;
|
|
7316
|
+
background-color: rgb(0 0 0 / var(--tw-bg-opacity)) !important;
|
|
7317
|
+
}
|
|
7107
7318
|
.disabled\:hover\:bg-transparent:hover:disabled{
|
|
7108
7319
|
background-color: transparent;
|
|
7109
7320
|
}
|