@diwauhris/ui 1.4.4 → 1.6.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/lib/assets/ui.css +195 -51
- package/lib/index.cjs +2751 -115
- package/lib/index.mjs +2742 -118
- package/lib/types/ui-library/gallery/charts/AreaChart.d.ts +110 -0
- package/lib/types/ui-library/gallery/charts/BarList.d.ts +65 -0
- package/lib/types/ui-library/gallery/charts/Charts.d.ts +21 -5
- package/lib/types/ui-library/gallery/combobox/Combobox.d.ts +2 -1
- package/lib/types/ui-library/gallery/org-chart/OrgChart.d.ts +77 -0
- package/lib/types/ui-library/gallery/org-unit-tree/OrgUnitTree.d.ts +84 -0
- package/lib/types/ui-library/gallery/page-sample/IsoCubeBlock.d.ts +28 -0
- package/lib/types/ui-library/gallery/template-samples/templates/PafTemplate.d.ts +57 -0
- package/lib/types/ui-library/gallery/template-samples/templates/PayslipTemplate.d.ts +42 -0
- package/lib/types/ui-library/gallery/template-samples/templates/ReportTemplate.d.ts +18 -0
- package/lib/types/ui-library/gallery/template-samples/templates/TimekeepingTemplate.d.ts +22 -0
- package/lib/types/ui-library/index.d.ts +19 -1
- package/lib/types/ui-library/registry.d.ts +3 -9
- package/package.json +15 -2
package/lib/assets/ui.css
CHANGED
|
@@ -290,6 +290,11 @@
|
|
|
290
290
|
inset: 0px;
|
|
291
291
|
}
|
|
292
292
|
|
|
293
|
+
.inset-x-0 {
|
|
294
|
+
left: 0px;
|
|
295
|
+
right: 0px;
|
|
296
|
+
}
|
|
297
|
+
|
|
293
298
|
.inset-x-2 {
|
|
294
299
|
left: 0.5rem;
|
|
295
300
|
right: 0.5rem;
|
|
@@ -876,6 +881,10 @@
|
|
|
876
881
|
min-height: 210mm;
|
|
877
882
|
}
|
|
878
883
|
|
|
884
|
+
.min-h-\[220px\] {
|
|
885
|
+
min-height: 220px;
|
|
886
|
+
}
|
|
887
|
+
|
|
879
888
|
.min-h-\[240px\] {
|
|
880
889
|
min-height: 240px;
|
|
881
890
|
}
|
|
@@ -884,6 +893,14 @@
|
|
|
884
893
|
min-height: 24px;
|
|
885
894
|
}
|
|
886
895
|
|
|
896
|
+
.min-h-\[260px\] {
|
|
897
|
+
min-height: 260px;
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
.min-h-\[280px\] {
|
|
901
|
+
min-height: 280px;
|
|
902
|
+
}
|
|
903
|
+
|
|
887
904
|
.min-h-\[2rem\] {
|
|
888
905
|
min-height: 2rem;
|
|
889
906
|
}
|
|
@@ -892,10 +909,26 @@
|
|
|
892
909
|
min-height: 300px;
|
|
893
910
|
}
|
|
894
911
|
|
|
912
|
+
.min-h-\[320px\] {
|
|
913
|
+
min-height: 320px;
|
|
914
|
+
}
|
|
915
|
+
|
|
895
916
|
.min-h-\[32px\] {
|
|
896
917
|
min-height: 32px;
|
|
897
918
|
}
|
|
898
919
|
|
|
920
|
+
.min-h-\[360px\] {
|
|
921
|
+
min-height: 360px;
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
.min-h-\[40px\] {
|
|
925
|
+
min-height: 40px;
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
.min-h-\[44px\] {
|
|
929
|
+
min-height: 44px;
|
|
930
|
+
}
|
|
931
|
+
|
|
899
932
|
.min-h-\[48px\] {
|
|
900
933
|
min-height: 48px;
|
|
901
934
|
}
|
|
@@ -1126,6 +1159,10 @@
|
|
|
1126
1159
|
min-width: 1.5rem;
|
|
1127
1160
|
}
|
|
1128
1161
|
|
|
1162
|
+
.min-w-\[100px\] {
|
|
1163
|
+
min-width: 100px;
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1129
1166
|
.min-w-\[110px\] {
|
|
1130
1167
|
min-width: 110px;
|
|
1131
1168
|
}
|
|
@@ -1561,10 +1598,6 @@
|
|
|
1561
1598
|
justify-content: space-between;
|
|
1562
1599
|
}
|
|
1563
1600
|
|
|
1564
|
-
.justify-around {
|
|
1565
|
-
justify-content: space-around;
|
|
1566
|
-
}
|
|
1567
|
-
|
|
1568
1601
|
.gap-0 {
|
|
1569
1602
|
gap: 0px;
|
|
1570
1603
|
}
|
|
@@ -1779,10 +1812,18 @@
|
|
|
1779
1812
|
align-self: stretch;
|
|
1780
1813
|
}
|
|
1781
1814
|
|
|
1815
|
+
.overflow-auto {
|
|
1816
|
+
overflow: auto;
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1782
1819
|
.overflow-hidden {
|
|
1783
1820
|
overflow: hidden;
|
|
1784
1821
|
}
|
|
1785
1822
|
|
|
1823
|
+
.overflow-visible {
|
|
1824
|
+
overflow: visible;
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1786
1827
|
.overflow-x-auto {
|
|
1787
1828
|
overflow-x: auto;
|
|
1788
1829
|
}
|
|
@@ -1872,6 +1913,11 @@
|
|
|
1872
1913
|
border-bottom-right-radius: 0.75rem;
|
|
1873
1914
|
}
|
|
1874
1915
|
|
|
1916
|
+
.rounded-t-2xl {
|
|
1917
|
+
border-top-left-radius: 1rem;
|
|
1918
|
+
border-top-right-radius: 1rem;
|
|
1919
|
+
}
|
|
1920
|
+
|
|
1875
1921
|
.rounded-t-xl {
|
|
1876
1922
|
border-top-left-radius: 0.75rem;
|
|
1877
1923
|
border-top-right-radius: 0.75rem;
|
|
@@ -2019,6 +2065,11 @@
|
|
|
2019
2065
|
border-color: rgb(251 191 36 / var(--tw-border-opacity, 1));
|
|
2020
2066
|
}
|
|
2021
2067
|
|
|
2068
|
+
.border-amber-500 {
|
|
2069
|
+
--tw-border-opacity: 1;
|
|
2070
|
+
border-color: rgb(245 158 11 / var(--tw-border-opacity, 1));
|
|
2071
|
+
}
|
|
2072
|
+
|
|
2022
2073
|
.border-black {
|
|
2023
2074
|
--tw-border-opacity: 1;
|
|
2024
2075
|
border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
|
|
@@ -2036,6 +2087,16 @@
|
|
|
2036
2087
|
border-color: rgb(0 0 0 / 0.5);
|
|
2037
2088
|
}
|
|
2038
2089
|
|
|
2090
|
+
.border-blue-600 {
|
|
2091
|
+
--tw-border-opacity: 1;
|
|
2092
|
+
border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
|
|
2093
|
+
}
|
|
2094
|
+
|
|
2095
|
+
.border-blue-700 {
|
|
2096
|
+
--tw-border-opacity: 1;
|
|
2097
|
+
border-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
|
|
2098
|
+
}
|
|
2099
|
+
|
|
2039
2100
|
.border-brand-blue {
|
|
2040
2101
|
--tw-border-opacity: 1;
|
|
2041
2102
|
border-color: rgb(3 78 162 / var(--tw-border-opacity, 1));
|
|
@@ -2094,6 +2155,11 @@
|
|
|
2094
2155
|
border-color: currentColor;
|
|
2095
2156
|
}
|
|
2096
2157
|
|
|
2158
|
+
.border-cyan-600 {
|
|
2159
|
+
--tw-border-opacity: 1;
|
|
2160
|
+
border-color: rgb(8 145 178 / var(--tw-border-opacity, 1));
|
|
2161
|
+
}
|
|
2162
|
+
|
|
2097
2163
|
.border-emerald-100 {
|
|
2098
2164
|
--tw-border-opacity: 1;
|
|
2099
2165
|
border-color: rgb(209 250 229 / var(--tw-border-opacity, 1));
|
|
@@ -2124,6 +2190,11 @@
|
|
|
2124
2190
|
border-color: rgb(5 150 105 / var(--tw-border-opacity, 1));
|
|
2125
2191
|
}
|
|
2126
2192
|
|
|
2193
|
+
.border-orange-200 {
|
|
2194
|
+
--tw-border-opacity: 1;
|
|
2195
|
+
border-color: rgb(254 215 170 / var(--tw-border-opacity, 1));
|
|
2196
|
+
}
|
|
2197
|
+
|
|
2127
2198
|
.border-rose-100 {
|
|
2128
2199
|
--tw-border-opacity: 1;
|
|
2129
2200
|
border-color: rgb(255 228 230 / var(--tw-border-opacity, 1));
|
|
@@ -2149,6 +2220,11 @@
|
|
|
2149
2220
|
border-color: rgb(244 63 94 / var(--tw-border-opacity, 1));
|
|
2150
2221
|
}
|
|
2151
2222
|
|
|
2223
|
+
.border-rose-600 {
|
|
2224
|
+
--tw-border-opacity: 1;
|
|
2225
|
+
border-color: rgb(225 29 72 / var(--tw-border-opacity, 1));
|
|
2226
|
+
}
|
|
2227
|
+
|
|
2152
2228
|
.border-rose-800 {
|
|
2153
2229
|
--tw-border-opacity: 1;
|
|
2154
2230
|
border-color: rgb(159 18 57 / var(--tw-border-opacity, 1));
|
|
@@ -2212,10 +2288,6 @@
|
|
|
2212
2288
|
border-color: rgb(51 65 85 / var(--tw-border-opacity, 1));
|
|
2213
2289
|
}
|
|
2214
2290
|
|
|
2215
|
-
.border-slate-700\/30 {
|
|
2216
|
-
border-color: rgb(51 65 85 / 0.3);
|
|
2217
|
-
}
|
|
2218
|
-
|
|
2219
2291
|
.border-slate-700\/60 {
|
|
2220
2292
|
border-color: rgb(51 65 85 / 0.6);
|
|
2221
2293
|
}
|
|
@@ -2407,6 +2479,16 @@
|
|
|
2407
2479
|
background-color: rgb(239 246 255 / 0.6);
|
|
2408
2480
|
}
|
|
2409
2481
|
|
|
2482
|
+
.bg-blue-500 {
|
|
2483
|
+
--tw-bg-opacity: 1;
|
|
2484
|
+
background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
|
|
2485
|
+
}
|
|
2486
|
+
|
|
2487
|
+
.bg-blue-600 {
|
|
2488
|
+
--tw-bg-opacity: 1;
|
|
2489
|
+
background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
|
|
2490
|
+
}
|
|
2491
|
+
|
|
2410
2492
|
.bg-brand-blue {
|
|
2411
2493
|
--tw-bg-opacity: 1;
|
|
2412
2494
|
background-color: rgb(3 78 162 / var(--tw-bg-opacity, 1));
|
|
@@ -2420,6 +2502,10 @@
|
|
|
2420
2502
|
background-color: rgb(3 78 162 / 0.15);
|
|
2421
2503
|
}
|
|
2422
2504
|
|
|
2505
|
+
.bg-brand-blue\/20 {
|
|
2506
|
+
background-color: rgb(3 78 162 / 0.2);
|
|
2507
|
+
}
|
|
2508
|
+
|
|
2423
2509
|
.bg-brand-blue\/50 {
|
|
2424
2510
|
background-color: rgb(3 78 162 / 0.5);
|
|
2425
2511
|
}
|
|
@@ -2437,14 +2523,6 @@
|
|
|
2437
2523
|
background-color: rgb(0 55 123 / var(--tw-bg-opacity, 1));
|
|
2438
2524
|
}
|
|
2439
2525
|
|
|
2440
|
-
.bg-brand-navy\/15 {
|
|
2441
|
-
background-color: rgb(0 55 123 / 0.15);
|
|
2442
|
-
}
|
|
2443
|
-
|
|
2444
|
-
.bg-brand-navy\/35 {
|
|
2445
|
-
background-color: rgb(0 55 123 / 0.35);
|
|
2446
|
-
}
|
|
2447
|
-
|
|
2448
2526
|
.bg-brand-navy\/40 {
|
|
2449
2527
|
background-color: rgb(0 55 123 / 0.4);
|
|
2450
2528
|
}
|
|
@@ -2453,10 +2531,6 @@
|
|
|
2453
2531
|
background-color: rgb(0 55 123 / 0.5);
|
|
2454
2532
|
}
|
|
2455
2533
|
|
|
2456
|
-
.bg-brand-navy\/65 {
|
|
2457
|
-
background-color: rgb(0 55 123 / 0.65);
|
|
2458
|
-
}
|
|
2459
|
-
|
|
2460
2534
|
.bg-brand-navy\/\[0\.03\] {
|
|
2461
2535
|
background-color: rgb(0 55 123 / 0.03);
|
|
2462
2536
|
}
|
|
@@ -2465,10 +2539,6 @@
|
|
|
2465
2539
|
background-color: rgb(0 55 123 / 0.06);
|
|
2466
2540
|
}
|
|
2467
2541
|
|
|
2468
|
-
.bg-brand-navy\/\[0\.08\] {
|
|
2469
|
-
background-color: rgb(0 55 123 / 0.08);
|
|
2470
|
-
}
|
|
2471
|
-
|
|
2472
2542
|
.bg-brand-sky {
|
|
2473
2543
|
--tw-bg-opacity: 1;
|
|
2474
2544
|
background-color: rgb(45 138 202 / var(--tw-bg-opacity, 1));
|
|
@@ -2490,10 +2560,6 @@
|
|
|
2490
2560
|
background-color: rgb(45 138 202 / 0.3);
|
|
2491
2561
|
}
|
|
2492
2562
|
|
|
2493
|
-
.bg-brand-sky\/40 {
|
|
2494
|
-
background-color: rgb(45 138 202 / 0.4);
|
|
2495
|
-
}
|
|
2496
|
-
|
|
2497
2563
|
.bg-brand-sky\/5 {
|
|
2498
2564
|
background-color: rgb(45 138 202 / 0.05);
|
|
2499
2565
|
}
|
|
@@ -2506,22 +2572,18 @@
|
|
|
2506
2572
|
background-color: rgb(45 138 202 / 0.6);
|
|
2507
2573
|
}
|
|
2508
2574
|
|
|
2509
|
-
.bg-brand-sky\/70 {
|
|
2510
|
-
background-color: rgb(45 138 202 / 0.7);
|
|
2511
|
-
}
|
|
2512
|
-
|
|
2513
2575
|
.bg-brand-sky\/\[0\.04\] {
|
|
2514
2576
|
background-color: rgb(45 138 202 / 0.04);
|
|
2515
2577
|
}
|
|
2516
2578
|
|
|
2517
|
-
.bg-cyan-
|
|
2579
|
+
.bg-cyan-200 {
|
|
2518
2580
|
--tw-bg-opacity: 1;
|
|
2519
|
-
background-color: rgb(
|
|
2581
|
+
background-color: rgb(165 243 252 / var(--tw-bg-opacity, 1));
|
|
2520
2582
|
}
|
|
2521
2583
|
|
|
2522
|
-
.bg-cyan-
|
|
2584
|
+
.bg-cyan-400 {
|
|
2523
2585
|
--tw-bg-opacity: 1;
|
|
2524
|
-
background-color: rgb(
|
|
2586
|
+
background-color: rgb(34 211 238 / var(--tw-bg-opacity, 1));
|
|
2525
2587
|
}
|
|
2526
2588
|
|
|
2527
2589
|
.bg-cyan-500 {
|
|
@@ -2529,9 +2591,14 @@
|
|
|
2529
2591
|
background-color: rgb(6 182 212 / var(--tw-bg-opacity, 1));
|
|
2530
2592
|
}
|
|
2531
2593
|
|
|
2532
|
-
.bg-cyan-
|
|
2594
|
+
.bg-cyan-600 {
|
|
2533
2595
|
--tw-bg-opacity: 1;
|
|
2534
|
-
background-color: rgb(
|
|
2596
|
+
background-color: rgb(8 145 178 / var(--tw-bg-opacity, 1));
|
|
2597
|
+
}
|
|
2598
|
+
|
|
2599
|
+
.bg-cyan-800 {
|
|
2600
|
+
--tw-bg-opacity: 1;
|
|
2601
|
+
background-color: rgb(21 94 117 / var(--tw-bg-opacity, 1));
|
|
2535
2602
|
}
|
|
2536
2603
|
|
|
2537
2604
|
.bg-emerald-100 {
|
|
@@ -2586,24 +2653,29 @@
|
|
|
2586
2653
|
background-color: rgb(129 140 248 / var(--tw-bg-opacity, 1));
|
|
2587
2654
|
}
|
|
2588
2655
|
|
|
2589
|
-
.bg-orange-
|
|
2656
|
+
.bg-orange-200 {
|
|
2590
2657
|
--tw-bg-opacity: 1;
|
|
2591
|
-
background-color: rgb(
|
|
2658
|
+
background-color: rgb(254 215 170 / var(--tw-bg-opacity, 1));
|
|
2592
2659
|
}
|
|
2593
2660
|
|
|
2594
|
-
.bg-orange-
|
|
2661
|
+
.bg-orange-400 {
|
|
2595
2662
|
--tw-bg-opacity: 1;
|
|
2596
|
-
background-color: rgb(
|
|
2663
|
+
background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
|
|
2597
2664
|
}
|
|
2598
2665
|
|
|
2599
|
-
.bg-orange-
|
|
2666
|
+
.bg-orange-50 {
|
|
2600
2667
|
--tw-bg-opacity: 1;
|
|
2601
|
-
background-color: rgb(
|
|
2668
|
+
background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
|
|
2602
2669
|
}
|
|
2603
2670
|
|
|
2604
|
-
.bg-orange-
|
|
2671
|
+
.bg-orange-500 {
|
|
2605
2672
|
--tw-bg-opacity: 1;
|
|
2606
|
-
background-color: rgb(
|
|
2673
|
+
background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
|
|
2674
|
+
}
|
|
2675
|
+
|
|
2676
|
+
.bg-orange-700 {
|
|
2677
|
+
--tw-bg-opacity: 1;
|
|
2678
|
+
background-color: rgb(194 65 12 / var(--tw-bg-opacity, 1));
|
|
2607
2679
|
}
|
|
2608
2680
|
|
|
2609
2681
|
.bg-rose-100 {
|
|
@@ -2657,6 +2729,11 @@
|
|
|
2657
2729
|
background-color: rgb(224 242 254 / var(--tw-bg-opacity, 1));
|
|
2658
2730
|
}
|
|
2659
2731
|
|
|
2732
|
+
.bg-sky-200 {
|
|
2733
|
+
--tw-bg-opacity: 1;
|
|
2734
|
+
background-color: rgb(186 230 253 / var(--tw-bg-opacity, 1));
|
|
2735
|
+
}
|
|
2736
|
+
|
|
2660
2737
|
.bg-sky-400 {
|
|
2661
2738
|
--tw-bg-opacity: 1;
|
|
2662
2739
|
background-color: rgb(56 189 248 / var(--tw-bg-opacity, 1));
|
|
@@ -2815,10 +2892,6 @@
|
|
|
2815
2892
|
--tw-gradient-to: #034EA2 var(--tw-gradient-to-position);
|
|
2816
2893
|
}
|
|
2817
2894
|
|
|
2818
|
-
.fill-slate-500 {
|
|
2819
|
-
fill: #64748b;
|
|
2820
|
-
}
|
|
2821
|
-
|
|
2822
2895
|
.object-contain {
|
|
2823
2896
|
-o-object-fit: contain;
|
|
2824
2897
|
object-fit: contain;
|
|
@@ -2857,6 +2930,10 @@
|
|
|
2857
2930
|
padding: 0.5rem;
|
|
2858
2931
|
}
|
|
2859
2932
|
|
|
2933
|
+
.p-2\.5 {
|
|
2934
|
+
padding: 0.625rem;
|
|
2935
|
+
}
|
|
2936
|
+
|
|
2860
2937
|
.p-3 {
|
|
2861
2938
|
padding: 0.75rem;
|
|
2862
2939
|
}
|
|
@@ -3563,6 +3640,11 @@
|
|
|
3563
3640
|
color: rgb(67 56 202 / var(--tw-text-opacity, 1));
|
|
3564
3641
|
}
|
|
3565
3642
|
|
|
3643
|
+
.text-orange-600 {
|
|
3644
|
+
--tw-text-opacity: 1;
|
|
3645
|
+
color: rgb(234 88 12 / var(--tw-text-opacity, 1));
|
|
3646
|
+
}
|
|
3647
|
+
|
|
3566
3648
|
.text-rose-300\/60 {
|
|
3567
3649
|
color: rgb(253 164 175 / 0.6);
|
|
3568
3650
|
}
|
|
@@ -3852,6 +3934,22 @@
|
|
|
3852
3934
|
outline-style: solid;
|
|
3853
3935
|
}
|
|
3854
3936
|
|
|
3937
|
+
.outline-2 {
|
|
3938
|
+
outline-width: 2px;
|
|
3939
|
+
}
|
|
3940
|
+
|
|
3941
|
+
.outline-offset-2 {
|
|
3942
|
+
outline-offset: 2px;
|
|
3943
|
+
}
|
|
3944
|
+
|
|
3945
|
+
.outline-emerald-400 {
|
|
3946
|
+
outline-color: #34d399;
|
|
3947
|
+
}
|
|
3948
|
+
|
|
3949
|
+
.outline-rose-400 {
|
|
3950
|
+
outline-color: #fb7185;
|
|
3951
|
+
}
|
|
3952
|
+
|
|
3855
3953
|
.ring {
|
|
3856
3954
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3857
3955
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -4080,15 +4178,17 @@ body {
|
|
|
4080
4178
|
@keyframes osSlideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
|
|
4081
4179
|
@keyframes osSlideInRight { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
|
|
4082
4180
|
@keyframes osBounceIn { 0% { opacity: 0; transform: scale(0.85); } 60% { transform: scale(1.06); } 80% { transform: scale(0.97); } 100% { opacity: 1; transform: scale(1); } }
|
|
4181
|
+
@keyframes osBarIn { from { opacity: 0; transform: scaleX(0); } to { opacity: 1; transform: scaleX(1); } }
|
|
4083
4182
|
|
|
4084
4183
|
.os-fade { animation: osFade 0.16s ease-out; }
|
|
4085
4184
|
.os-pop { animation: osPop 0.2s cubic-bezier(0.16, 1, 0.3, 1); }
|
|
4086
4185
|
.os-slide-up { animation: osSlideUp 0.22s cubic-bezier(0.16, 1, 0.3, 1); }
|
|
4087
4186
|
.os-slide-in-right { animation: osSlideInRight 0.22s cubic-bezier(0.16, 1, 0.3, 1); }
|
|
4088
4187
|
.os-bounce-in { animation: osBounceIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
|
|
4188
|
+
.os-bar-in { animation: osBarIn 0.22s cubic-bezier(0.16, 1, 0.3, 1) both; transform-origin: left; }
|
|
4089
4189
|
|
|
4090
4190
|
@media (prefers-reduced-motion: reduce) {
|
|
4091
|
-
.os-fade, .os-pop, .os-slide-up, .os-slide-in-right, .os-bounce-in { animation: none; }
|
|
4191
|
+
.os-fade, .os-pop, .os-slide-up, .os-slide-in-right, .os-bounce-in, .os-bar-in { animation: none; }
|
|
4092
4192
|
}
|
|
4093
4193
|
|
|
4094
4194
|
/* ── Skeleton shimmer ────────────────────────────────────────────────────── */
|
|
@@ -4511,6 +4611,9 @@ body {
|
|
|
4511
4611
|
--tw-bg-opacity: 1;
|
|
4512
4612
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
4513
4613
|
}
|
|
4614
|
+
.hover\:bg-white\/10:hover {
|
|
4615
|
+
background-color: rgb(255 255 255 / 0.1);
|
|
4616
|
+
}
|
|
4514
4617
|
.hover\:bg-white\/20:hover {
|
|
4515
4618
|
background-color: rgb(255 255 255 / 0.2);
|
|
4516
4619
|
}
|
|
@@ -4920,6 +5023,9 @@ body {
|
|
|
4920
5023
|
.sm\:grid-cols-4 {
|
|
4921
5024
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
4922
5025
|
}
|
|
5026
|
+
.sm\:grid-cols-5 {
|
|
5027
|
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
5028
|
+
}
|
|
4923
5029
|
.sm\:grid-cols-6 {
|
|
4924
5030
|
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
4925
5031
|
}
|
|
@@ -4948,15 +5054,34 @@ body {
|
|
|
4948
5054
|
}
|
|
4949
5055
|
}
|
|
4950
5056
|
@media (min-width: 768px) {
|
|
5057
|
+
.md\:relative {
|
|
5058
|
+
position: relative;
|
|
5059
|
+
}
|
|
5060
|
+
.md\:inset-auto {
|
|
5061
|
+
inset: auto;
|
|
5062
|
+
}
|
|
5063
|
+
.md\:mx-auto {
|
|
5064
|
+
margin-left: auto;
|
|
5065
|
+
margin-right: auto;
|
|
5066
|
+
}
|
|
5067
|
+
.md\:block {
|
|
5068
|
+
display: block;
|
|
5069
|
+
}
|
|
4951
5070
|
.md\:flex {
|
|
4952
5071
|
display: flex;
|
|
4953
5072
|
}
|
|
5073
|
+
.md\:hidden {
|
|
5074
|
+
display: none;
|
|
5075
|
+
}
|
|
4954
5076
|
.md\:w-56 {
|
|
4955
5077
|
width: 14rem;
|
|
4956
5078
|
}
|
|
4957
5079
|
.md\:w-80 {
|
|
4958
5080
|
width: 20rem;
|
|
4959
5081
|
}
|
|
5082
|
+
.md\:w-96 {
|
|
5083
|
+
width: 24rem;
|
|
5084
|
+
}
|
|
4960
5085
|
.md\:grid-cols-2 {
|
|
4961
5086
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
4962
5087
|
}
|
|
@@ -4981,6 +5106,9 @@ body {
|
|
|
4981
5106
|
.md\:self-auto {
|
|
4982
5107
|
align-self: auto;
|
|
4983
5108
|
}
|
|
5109
|
+
.md\:rounded-2xl {
|
|
5110
|
+
border-radius: 1rem;
|
|
5111
|
+
}
|
|
4984
5112
|
.md\:p-6 {
|
|
4985
5113
|
padding: 1.5rem;
|
|
4986
5114
|
}
|
|
@@ -4991,6 +5119,14 @@ body {
|
|
|
4991
5119
|
.md\:pt-4 {
|
|
4992
5120
|
padding-top: 1rem;
|
|
4993
5121
|
}
|
|
5122
|
+
.md\:text-3xl {
|
|
5123
|
+
font-size: 1.875rem;
|
|
5124
|
+
line-height: 2.25rem;
|
|
5125
|
+
}
|
|
5126
|
+
.md\:text-xl {
|
|
5127
|
+
font-size: 1.25rem;
|
|
5128
|
+
line-height: 1.75rem;
|
|
5129
|
+
}
|
|
4994
5130
|
}
|
|
4995
5131
|
@media (min-width: 1024px) {
|
|
4996
5132
|
.lg\:col-span-2 {
|
|
@@ -5024,6 +5160,14 @@ body {
|
|
|
5024
5160
|
padding-left: 3rem;
|
|
5025
5161
|
padding-right: 3rem;
|
|
5026
5162
|
}
|
|
5163
|
+
.lg\:px-8 {
|
|
5164
|
+
padding-left: 2rem;
|
|
5165
|
+
padding-right: 2rem;
|
|
5166
|
+
}
|
|
5167
|
+
.lg\:text-4xl {
|
|
5168
|
+
font-size: 2.25rem;
|
|
5169
|
+
line-height: 2.5rem;
|
|
5170
|
+
}
|
|
5027
5171
|
}
|
|
5028
5172
|
@media (min-width: 1280px) {
|
|
5029
5173
|
.xl\:grid-cols-4 {
|