@mlw-packages/react-components 1.10.1 → 1.10.3
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 +177 -13
- package/dist/index.d.mts +159 -30
- package/dist/index.d.ts +159 -30
- package/dist/index.js +861 -138
- package/dist/index.mjs +852 -141
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -349,30 +349,48 @@ body {
|
|
|
349
349
|
-moz-osx-font-smoothing: grayscale;
|
|
350
350
|
font-family: "Syne", sans-serif;
|
|
351
351
|
}
|
|
352
|
+
.\!container {
|
|
353
|
+
width: 100% !important;
|
|
354
|
+
}
|
|
352
355
|
.container {
|
|
353
356
|
width: 100%;
|
|
354
357
|
}
|
|
355
358
|
@media (min-width: 640px) {
|
|
359
|
+
.\!container {
|
|
360
|
+
max-width: 640px !important;
|
|
361
|
+
}
|
|
356
362
|
.container {
|
|
357
363
|
max-width: 640px;
|
|
358
364
|
}
|
|
359
365
|
}
|
|
360
366
|
@media (min-width: 768px) {
|
|
367
|
+
.\!container {
|
|
368
|
+
max-width: 768px !important;
|
|
369
|
+
}
|
|
361
370
|
.container {
|
|
362
371
|
max-width: 768px;
|
|
363
372
|
}
|
|
364
373
|
}
|
|
365
374
|
@media (min-width: 1024px) {
|
|
375
|
+
.\!container {
|
|
376
|
+
max-width: 1024px !important;
|
|
377
|
+
}
|
|
366
378
|
.container {
|
|
367
379
|
max-width: 1024px;
|
|
368
380
|
}
|
|
369
381
|
}
|
|
370
382
|
@media (min-width: 1280px) {
|
|
383
|
+
.\!container {
|
|
384
|
+
max-width: 1280px !important;
|
|
385
|
+
}
|
|
371
386
|
.container {
|
|
372
387
|
max-width: 1280px;
|
|
373
388
|
}
|
|
374
389
|
}
|
|
375
390
|
@media (min-width: 1536px) {
|
|
391
|
+
.\!container {
|
|
392
|
+
max-width: 1536px !important;
|
|
393
|
+
}
|
|
376
394
|
.container {
|
|
377
395
|
max-width: 1536px;
|
|
378
396
|
}
|
|
@@ -459,6 +477,9 @@ body {
|
|
|
459
477
|
.bottom-0 {
|
|
460
478
|
bottom: 0px;
|
|
461
479
|
}
|
|
480
|
+
.bottom-0\.5 {
|
|
481
|
+
bottom: 0.125rem;
|
|
482
|
+
}
|
|
462
483
|
.bottom-2 {
|
|
463
484
|
bottom: 0.5rem;
|
|
464
485
|
}
|
|
@@ -588,6 +609,9 @@ body {
|
|
|
588
609
|
.z-\[10000\] {
|
|
589
610
|
z-index: 10000;
|
|
590
611
|
}
|
|
612
|
+
.z-\[10001\] {
|
|
613
|
+
z-index: 10001;
|
|
614
|
+
}
|
|
591
615
|
.z-\[100\] {
|
|
592
616
|
z-index: 100;
|
|
593
617
|
}
|
|
@@ -823,6 +847,9 @@ body {
|
|
|
823
847
|
.mt-auto {
|
|
824
848
|
margin-top: auto;
|
|
825
849
|
}
|
|
850
|
+
.mt-px {
|
|
851
|
+
margin-top: 1px;
|
|
852
|
+
}
|
|
826
853
|
.box-border {
|
|
827
854
|
box-sizing: border-box;
|
|
828
855
|
}
|
|
@@ -1033,6 +1060,12 @@ body {
|
|
|
1033
1060
|
.h-\[550px\] {
|
|
1034
1061
|
height: 550px;
|
|
1035
1062
|
}
|
|
1063
|
+
.h-\[600px\] {
|
|
1064
|
+
height: 600px;
|
|
1065
|
+
}
|
|
1066
|
+
.h-\[76px\] {
|
|
1067
|
+
height: 76px;
|
|
1068
|
+
}
|
|
1036
1069
|
.h-\[95vh\] {
|
|
1037
1070
|
height: 95vh;
|
|
1038
1071
|
}
|
|
@@ -1063,15 +1096,18 @@ body {
|
|
|
1063
1096
|
.h-px {
|
|
1064
1097
|
height: 1px;
|
|
1065
1098
|
}
|
|
1099
|
+
.h-screen {
|
|
1100
|
+
height: 100vh;
|
|
1101
|
+
}
|
|
1066
1102
|
.h-svh {
|
|
1067
1103
|
height: 100svh;
|
|
1068
1104
|
}
|
|
1105
|
+
.max-h-36 {
|
|
1106
|
+
max-height: 9rem;
|
|
1107
|
+
}
|
|
1069
1108
|
.max-h-40 {
|
|
1070
1109
|
max-height: 10rem;
|
|
1071
1110
|
}
|
|
1072
|
-
.max-h-44 {
|
|
1073
|
-
max-height: 11rem;
|
|
1074
|
-
}
|
|
1075
1111
|
.max-h-48 {
|
|
1076
1112
|
max-height: 12rem;
|
|
1077
1113
|
}
|
|
@@ -1096,12 +1132,18 @@ body {
|
|
|
1096
1132
|
.max-h-\[300px\] {
|
|
1097
1133
|
max-height: 300px;
|
|
1098
1134
|
}
|
|
1135
|
+
.max-h-\[60vh\] {
|
|
1136
|
+
max-height: 60vh;
|
|
1137
|
+
}
|
|
1099
1138
|
.max-h-\[95vh\] {
|
|
1100
1139
|
max-height: 95vh;
|
|
1101
1140
|
}
|
|
1102
1141
|
.max-h-\[calc\(100dvh-2rem\)\] {
|
|
1103
1142
|
max-height: calc(100dvh - 2rem);
|
|
1104
1143
|
}
|
|
1144
|
+
.max-h-\[calc\(100vh-200px\)\] {
|
|
1145
|
+
max-height: calc(100vh - 200px);
|
|
1146
|
+
}
|
|
1105
1147
|
.max-h-\[var\(--radix-context-menu-content-available-height\)\] {
|
|
1106
1148
|
max-height: var(--radix-context-menu-content-available-height);
|
|
1107
1149
|
}
|
|
@@ -1297,6 +1339,9 @@ body {
|
|
|
1297
1339
|
.w-\[350px\] {
|
|
1298
1340
|
width: 350px;
|
|
1299
1341
|
}
|
|
1342
|
+
.w-\[40\%\] {
|
|
1343
|
+
width: 40%;
|
|
1344
|
+
}
|
|
1300
1345
|
.w-\[400px\] {
|
|
1301
1346
|
width: 400px;
|
|
1302
1347
|
}
|
|
@@ -1312,6 +1357,9 @@ body {
|
|
|
1312
1357
|
.w-\[70\%\] {
|
|
1313
1358
|
width: 70%;
|
|
1314
1359
|
}
|
|
1360
|
+
.w-\[76px\] {
|
|
1361
|
+
width: 76px;
|
|
1362
|
+
}
|
|
1315
1363
|
.w-\[80px\] {
|
|
1316
1364
|
width: 80px;
|
|
1317
1365
|
}
|
|
@@ -1324,6 +1372,9 @@ body {
|
|
|
1324
1372
|
.w-\[calc\(100\%-2rem\)\] {
|
|
1325
1373
|
width: calc(100% - 2rem);
|
|
1326
1374
|
}
|
|
1375
|
+
.w-\[calc\(100vw-32px\)\] {
|
|
1376
|
+
width: calc(100vw - 32px);
|
|
1377
|
+
}
|
|
1327
1378
|
.w-auto {
|
|
1328
1379
|
width: auto;
|
|
1329
1380
|
}
|
|
@@ -1825,6 +1876,9 @@ body {
|
|
|
1825
1876
|
.gap-8 {
|
|
1826
1877
|
gap: 2rem;
|
|
1827
1878
|
}
|
|
1879
|
+
.gap-y-1 {
|
|
1880
|
+
row-gap: 0.25rem;
|
|
1881
|
+
}
|
|
1828
1882
|
.-space-x-3 > :not([hidden]) ~ :not([hidden]) {
|
|
1829
1883
|
--tw-space-x-reverse: 0;
|
|
1830
1884
|
margin-right: calc(-0.75rem * var(--tw-space-x-reverse));
|
|
@@ -1908,6 +1962,9 @@ body {
|
|
|
1908
1962
|
.divide-border > :not([hidden]) ~ :not([hidden]) {
|
|
1909
1963
|
border-color: hsl(var(--border));
|
|
1910
1964
|
}
|
|
1965
|
+
.divide-border\/20 > :not([hidden]) ~ :not([hidden]) {
|
|
1966
|
+
border-color: hsl(var(--border) / 0.2);
|
|
1967
|
+
}
|
|
1911
1968
|
.overflow-auto {
|
|
1912
1969
|
overflow: auto;
|
|
1913
1970
|
}
|
|
@@ -2040,6 +2097,10 @@ body {
|
|
|
2040
2097
|
border-top-left-radius: 0.25rem;
|
|
2041
2098
|
border-top-right-radius: 0.25rem;
|
|
2042
2099
|
}
|
|
2100
|
+
.rounded-t-2xl {
|
|
2101
|
+
border-top-left-radius: 1rem;
|
|
2102
|
+
border-top-right-radius: 1rem;
|
|
2103
|
+
}
|
|
2043
2104
|
.rounded-t-lg {
|
|
2044
2105
|
border-top-left-radius: var(--radius);
|
|
2045
2106
|
border-top-right-radius: var(--radius);
|
|
@@ -2119,6 +2180,22 @@ body {
|
|
|
2119
2180
|
.border-none {
|
|
2120
2181
|
border-style: none;
|
|
2121
2182
|
}
|
|
2183
|
+
.\!border-\[\#005bbf\] {
|
|
2184
|
+
--tw-border-opacity: 1 !important;
|
|
2185
|
+
border-color: rgb(0 91 191 / var(--tw-border-opacity, 1)) !important;
|
|
2186
|
+
}
|
|
2187
|
+
.\!border-\[\#0b5430\] {
|
|
2188
|
+
--tw-border-opacity: 1 !important;
|
|
2189
|
+
border-color: rgb(11 84 48 / var(--tw-border-opacity, 1)) !important;
|
|
2190
|
+
}
|
|
2191
|
+
.\!border-\[\#d9d0c0\] {
|
|
2192
|
+
--tw-border-opacity: 1 !important;
|
|
2193
|
+
border-color: rgb(217 208 192 / var(--tw-border-opacity, 1)) !important;
|
|
2194
|
+
}
|
|
2195
|
+
.\!border-black {
|
|
2196
|
+
--tw-border-opacity: 1 !important;
|
|
2197
|
+
border-color: rgb(0 0 0 / var(--tw-border-opacity, 1)) !important;
|
|
2198
|
+
}
|
|
2122
2199
|
.border-accent {
|
|
2123
2200
|
border-color: hsl(var(--accent));
|
|
2124
2201
|
}
|
|
@@ -2162,6 +2239,9 @@ body {
|
|
|
2162
2239
|
.border-border\/20 {
|
|
2163
2240
|
border-color: hsl(var(--border) / 0.2);
|
|
2164
2241
|
}
|
|
2242
|
+
.border-border\/30 {
|
|
2243
|
+
border-color: hsl(var(--border) / 0.3);
|
|
2244
|
+
}
|
|
2165
2245
|
.border-border\/40 {
|
|
2166
2246
|
border-color: hsl(var(--border) / 0.4);
|
|
2167
2247
|
}
|
|
@@ -2261,9 +2341,6 @@ body {
|
|
|
2261
2341
|
.border-primary\/20 {
|
|
2262
2342
|
border-color: hsl(var(--primary) / 0.2);
|
|
2263
2343
|
}
|
|
2264
|
-
.border-primary\/30 {
|
|
2265
|
-
border-color: hsl(var(--primary) / 0.3);
|
|
2266
|
-
}
|
|
2267
2344
|
.border-primary\/50 {
|
|
2268
2345
|
border-color: hsl(var(--primary) / 0.5);
|
|
2269
2346
|
}
|
|
@@ -2394,6 +2471,30 @@ body {
|
|
|
2394
2471
|
.\!bg-transparent {
|
|
2395
2472
|
background-color: transparent !important;
|
|
2396
2473
|
}
|
|
2474
|
+
.bg-\[\#005bbf\] {
|
|
2475
|
+
--tw-bg-opacity: 1;
|
|
2476
|
+
background-color: rgb(0 91 191 / var(--tw-bg-opacity, 1));
|
|
2477
|
+
}
|
|
2478
|
+
.bg-\[\#0b5430\] {
|
|
2479
|
+
--tw-bg-opacity: 1;
|
|
2480
|
+
background-color: rgb(11 84 48 / var(--tw-bg-opacity, 1));
|
|
2481
|
+
}
|
|
2482
|
+
.bg-\[\#d9d0c0\] {
|
|
2483
|
+
--tw-bg-opacity: 1;
|
|
2484
|
+
background-color: rgb(217 208 192 / var(--tw-bg-opacity, 1));
|
|
2485
|
+
}
|
|
2486
|
+
.bg-\[\#e2ddd6\] {
|
|
2487
|
+
--tw-bg-opacity: 1;
|
|
2488
|
+
background-color: rgb(226 221 214 / var(--tw-bg-opacity, 1));
|
|
2489
|
+
}
|
|
2490
|
+
.bg-\[\#f0eacc\] {
|
|
2491
|
+
--tw-bg-opacity: 1;
|
|
2492
|
+
background-color: rgb(240 234 204 / var(--tw-bg-opacity, 1));
|
|
2493
|
+
}
|
|
2494
|
+
.bg-\[\#fcf5c2\] {
|
|
2495
|
+
--tw-bg-opacity: 1;
|
|
2496
|
+
background-color: rgb(252 245 194 / var(--tw-bg-opacity, 1));
|
|
2497
|
+
}
|
|
2397
2498
|
.bg-accent {
|
|
2398
2499
|
background-color: hsl(var(--accent));
|
|
2399
2500
|
}
|
|
@@ -2442,6 +2543,10 @@ body {
|
|
|
2442
2543
|
.bg-background\/95 {
|
|
2443
2544
|
background-color: hsl(var(--background) / 0.95);
|
|
2444
2545
|
}
|
|
2546
|
+
.bg-black {
|
|
2547
|
+
--tw-bg-opacity: 1;
|
|
2548
|
+
background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
|
|
2549
|
+
}
|
|
2445
2550
|
.bg-black\/20 {
|
|
2446
2551
|
background-color: rgb(0 0 0 / 0.2);
|
|
2447
2552
|
}
|
|
@@ -2859,9 +2964,6 @@ body {
|
|
|
2859
2964
|
.bg-white\/5 {
|
|
2860
2965
|
background-color: rgb(255 255 255 / 0.05);
|
|
2861
2966
|
}
|
|
2862
|
-
.bg-white\/50 {
|
|
2863
|
-
background-color: rgb(255 255 255 / 0.5);
|
|
2864
|
-
}
|
|
2865
2967
|
.bg-white\/70 {
|
|
2866
2968
|
background-color: rgb(255 255 255 / 0.7);
|
|
2867
2969
|
}
|
|
@@ -3255,6 +3357,9 @@ body {
|
|
|
3255
3357
|
.stroke-destructive-foreground\/20 {
|
|
3256
3358
|
stroke: hsl(var(--destructive-foreground) / 0.2);
|
|
3257
3359
|
}
|
|
3360
|
+
.stroke-primary {
|
|
3361
|
+
stroke: hsl(var(--primary));
|
|
3362
|
+
}
|
|
3258
3363
|
.stroke-primary-foreground\/20 {
|
|
3259
3364
|
stroke: hsl(var(--primary-foreground) / 0.2);
|
|
3260
3365
|
}
|
|
@@ -3449,6 +3554,9 @@ body {
|
|
|
3449
3554
|
.pb-7 {
|
|
3450
3555
|
padding-bottom: 1.75rem;
|
|
3451
3556
|
}
|
|
3557
|
+
.pb-\[env\(safe-area-inset-bottom\)\] {
|
|
3558
|
+
padding-bottom: env(safe-area-inset-bottom);
|
|
3559
|
+
}
|
|
3452
3560
|
.pe-1 {
|
|
3453
3561
|
padding-inline-end: 0.25rem;
|
|
3454
3562
|
}
|
|
@@ -3509,6 +3617,9 @@ body {
|
|
|
3509
3617
|
.pt-2 {
|
|
3510
3618
|
padding-top: 0.5rem;
|
|
3511
3619
|
}
|
|
3620
|
+
.pt-2\.5 {
|
|
3621
|
+
padding-top: 0.625rem;
|
|
3622
|
+
}
|
|
3512
3623
|
.pt-4 {
|
|
3513
3624
|
padding-top: 1rem;
|
|
3514
3625
|
}
|
|
@@ -3524,6 +3635,18 @@ body {
|
|
|
3524
3635
|
.align-middle {
|
|
3525
3636
|
vertical-align: middle;
|
|
3526
3637
|
}
|
|
3638
|
+
.font-\[family-name\:var\(--font-josefin\)\] {
|
|
3639
|
+
font-family: var(--font-josefin);
|
|
3640
|
+
}
|
|
3641
|
+
.font-\[family-name\:var\(--font-libre-caslon\)\] {
|
|
3642
|
+
font-family: var(--font-libre-caslon);
|
|
3643
|
+
}
|
|
3644
|
+
.font-\[family-name\:var\(--font-playfair\)\] {
|
|
3645
|
+
font-family: var(--font-playfair);
|
|
3646
|
+
}
|
|
3647
|
+
.font-\[family-name\:var\(--font-poppins\)\] {
|
|
3648
|
+
font-family: var(--font-poppins);
|
|
3649
|
+
}
|
|
3527
3650
|
.font-mono {
|
|
3528
3651
|
font-family:
|
|
3529
3652
|
ui-monospace,
|
|
@@ -3701,6 +3824,26 @@ body {
|
|
|
3701
3824
|
--tw-text-opacity: 1 !important;
|
|
3702
3825
|
color: rgb(163 163 163 / var(--tw-text-opacity, 1)) !important;
|
|
3703
3826
|
}
|
|
3827
|
+
.text-\[\#004a9e\] {
|
|
3828
|
+
--tw-text-opacity: 1;
|
|
3829
|
+
color: rgb(0 74 158 / var(--tw-text-opacity, 1));
|
|
3830
|
+
}
|
|
3831
|
+
.text-\[\#005bbf\] {
|
|
3832
|
+
--tw-text-opacity: 1;
|
|
3833
|
+
color: rgb(0 91 191 / var(--tw-text-opacity, 1));
|
|
3834
|
+
}
|
|
3835
|
+
.text-\[\#222222\] {
|
|
3836
|
+
--tw-text-opacity: 1;
|
|
3837
|
+
color: rgb(34 34 34 / var(--tw-text-opacity, 1));
|
|
3838
|
+
}
|
|
3839
|
+
.text-\[\#5e5b56\] {
|
|
3840
|
+
--tw-text-opacity: 1;
|
|
3841
|
+
color: rgb(94 91 86 / var(--tw-text-opacity, 1));
|
|
3842
|
+
}
|
|
3843
|
+
.text-\[\#6b665c\] {
|
|
3844
|
+
--tw-text-opacity: 1;
|
|
3845
|
+
color: rgb(107 102 92 / var(--tw-text-opacity, 1));
|
|
3846
|
+
}
|
|
3704
3847
|
.text-accent-foreground {
|
|
3705
3848
|
color: hsl(var(--accent-foreground));
|
|
3706
3849
|
}
|
|
@@ -3785,6 +3928,9 @@ body {
|
|
|
3785
3928
|
.text-foreground {
|
|
3786
3929
|
color: hsl(var(--foreground));
|
|
3787
3930
|
}
|
|
3931
|
+
.text-foreground\/70 {
|
|
3932
|
+
color: hsl(var(--foreground) / 0.7);
|
|
3933
|
+
}
|
|
3788
3934
|
.text-foreground\/90 {
|
|
3789
3935
|
color: hsl(var(--foreground) / 0.9);
|
|
3790
3936
|
}
|
|
@@ -4338,6 +4484,10 @@ body {
|
|
|
4338
4484
|
--tw-backdrop-blur: blur(1px);
|
|
4339
4485
|
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
4340
4486
|
}
|
|
4487
|
+
.backdrop-blur-\[2px\] {
|
|
4488
|
+
--tw-backdrop-blur: blur(2px);
|
|
4489
|
+
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
4490
|
+
}
|
|
4341
4491
|
.backdrop-blur-md {
|
|
4342
4492
|
--tw-backdrop-blur: blur(12px);
|
|
4343
4493
|
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
@@ -5557,6 +5707,9 @@ body {
|
|
|
5557
5707
|
.group:hover .group-hover\:text-destructive {
|
|
5558
5708
|
color: hsl(var(--destructive));
|
|
5559
5709
|
}
|
|
5710
|
+
.group:hover .group-hover\:text-primary {
|
|
5711
|
+
color: hsl(var(--primary));
|
|
5712
|
+
}
|
|
5560
5713
|
.group\/menu-item:hover .group-hover\/menu-item\:opacity-100 {
|
|
5561
5714
|
opacity: 1;
|
|
5562
5715
|
}
|
|
@@ -7128,6 +7281,9 @@ body {
|
|
|
7128
7281
|
.sm\:h-7 {
|
|
7129
7282
|
height: 1.75rem;
|
|
7130
7283
|
}
|
|
7284
|
+
.sm\:max-h-\[520px\] {
|
|
7285
|
+
max-height: 520px;
|
|
7286
|
+
}
|
|
7131
7287
|
.sm\:max-h-\[90dvh\] {
|
|
7132
7288
|
max-height: 90dvh;
|
|
7133
7289
|
}
|
|
@@ -7149,6 +7305,12 @@ body {
|
|
|
7149
7305
|
.sm\:w-7 {
|
|
7150
7306
|
width: 1.75rem;
|
|
7151
7307
|
}
|
|
7308
|
+
.sm\:w-80 {
|
|
7309
|
+
width: 20rem;
|
|
7310
|
+
}
|
|
7311
|
+
.sm\:w-\[38\%\] {
|
|
7312
|
+
width: 38%;
|
|
7313
|
+
}
|
|
7152
7314
|
.sm\:w-auto {
|
|
7153
7315
|
width: auto;
|
|
7154
7316
|
}
|
|
@@ -7272,10 +7434,6 @@ body {
|
|
|
7272
7434
|
padding-left: 1.5rem;
|
|
7273
7435
|
padding-right: 1.5rem;
|
|
7274
7436
|
}
|
|
7275
|
-
.sm\:py-1 {
|
|
7276
|
-
padding-top: 0.25rem;
|
|
7277
|
-
padding-bottom: 0.25rem;
|
|
7278
|
-
}
|
|
7279
7437
|
.sm\:pe-4 {
|
|
7280
7438
|
padding-inline-end: 1rem;
|
|
7281
7439
|
}
|
|
@@ -7486,6 +7644,9 @@ body {
|
|
|
7486
7644
|
}
|
|
7487
7645
|
}
|
|
7488
7646
|
@media (min-width: 1024px) {
|
|
7647
|
+
.lg\:max-h-\[750px\] {
|
|
7648
|
+
max-height: 750px;
|
|
7649
|
+
}
|
|
7489
7650
|
.lg\:min-h-\[calc\(\(var\(--event-height\)\+var\(--event-gap\)\)\*4\)\] {
|
|
7490
7651
|
min-height: calc((var(--event-height) + var(--event-gap)) * 4);
|
|
7491
7652
|
}
|
|
@@ -7561,6 +7722,9 @@ body {
|
|
|
7561
7722
|
.\[\&\:\:-webkit-scrollbar\]\:h-1\.5::-webkit-scrollbar {
|
|
7562
7723
|
height: 0.375rem;
|
|
7563
7724
|
}
|
|
7725
|
+
.\[\&\:\:-webkit-scrollbar\]\:w-1::-webkit-scrollbar {
|
|
7726
|
+
width: 0.25rem;
|
|
7727
|
+
}
|
|
7564
7728
|
.\[\&\:\:-webkit-scrollbar\]\:w-1\.5::-webkit-scrollbar {
|
|
7565
7729
|
width: 0.375rem;
|
|
7566
7730
|
}
|