uibee 1.7.0 → 2.0.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/Readme.md +0 -1
- package/dist/globals.css +563 -8
- package/dist/src/components/index.d.ts +4 -0
- package/dist/src/components/index.js +5 -0
- package/dist/src/components/login/loginPage.js +5 -6
- package/dist/src/components/logo/logo.d.ts +5 -1
- package/dist/src/components/logo/logo.js +2 -3
- package/dist/src/components/logo/logoSmall.js +2 -2
- package/dist/src/components/navbar/navbar.d.ts +10 -0
- package/dist/src/components/navbar/navbar.js +36 -0
- package/dist/src/components/navbar/navbarDropdown.d.ts +6 -0
- package/dist/src/components/navbar/navbarDropdown.js +21 -0
- package/dist/src/components/navbar/navbarItem.d.ts +11 -0
- package/dist/src/components/navbar/navbarItem.js +12 -0
- package/dist/src/components/toggle/theme.d.ts +1 -1
- package/dist/src/components/toggle/theme.js +1 -1
- package/dist/src/components/version/version.d.ts +7 -0
- package/dist/src/components/version/version.js +12 -0
- package/dist/src/scripts/rewriteAlias.js +0 -20
- package/package.json +8 -6
- package/src/components/index.ts +6 -0
- package/src/components/login/loginPage.tsx +8 -14
- package/src/components/logo/logo.tsx +6 -2
- package/src/components/logo/logoSmall.tsx +2 -2
- package/src/components/navbar/navbar.tsx +130 -0
- package/src/components/navbar/navbarDropdown.tsx +77 -0
- package/src/components/navbar/navbarItem.tsx +47 -0
- package/src/components/toggle/theme.tsx +1 -1
- package/src/components/version/version.tsx +34 -0
- package/src/globals.css +37 -0
- package/src/scripts/rewriteAlias.ts +0 -22
- package/tsconfig.json +0 -3
- package/dist/images/logo-tekst-white.svg +0 -171
- package/dist/src/types/svg.d.ts +0 -4
- package/dist/src/types/svg.js +0 -1
- package/images/logo-tekst-white.svg +0 -171
- package/src/types/svg.ts +0 -4
package/dist/globals.css
CHANGED
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
--container-sm: 24rem;
|
|
24
24
|
--container-md: 28rem;
|
|
25
25
|
--container-2xl: 42rem;
|
|
26
|
+
--container-6xl: 72rem;
|
|
26
27
|
--text-sm: 0.875rem;
|
|
27
28
|
--text-sm--line-height: calc(1.25 / 0.875);
|
|
28
29
|
--text-base: 1rem;
|
|
@@ -31,9 +32,12 @@
|
|
|
31
32
|
--text-lg--line-height: calc(1.75 / 1.125);
|
|
32
33
|
--text-xl: 1.25rem;
|
|
33
34
|
--text-xl--line-height: calc(1.75 / 1.25);
|
|
35
|
+
--text-2xl: 1.5rem;
|
|
36
|
+
--text-2xl--line-height: calc(2 / 1.5);
|
|
34
37
|
--text-3xl: 1.875rem;
|
|
35
38
|
--text-3xl--line-height: calc(2.25 / 1.875);
|
|
36
39
|
--font-weight-medium: 500;
|
|
40
|
+
--font-weight-semibold: 600;
|
|
37
41
|
--font-weight-bold: 700;
|
|
38
42
|
--font-weight-extrabold: 800;
|
|
39
43
|
--tracking-tight: -0.025em;
|
|
@@ -41,6 +45,9 @@
|
|
|
41
45
|
--radius-md: 0.375rem;
|
|
42
46
|
--radius-lg: 0.5rem;
|
|
43
47
|
--radius-xl: 0.75rem;
|
|
48
|
+
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
49
|
+
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
50
|
+
--blur-xl: 24px;
|
|
44
51
|
--default-transition-duration: 150ms;
|
|
45
52
|
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
46
53
|
--default-font-family: var(--font-sans);
|
|
@@ -52,7 +59,6 @@
|
|
|
52
59
|
--color-login-600: #212121;
|
|
53
60
|
--color-login-300: #5e5e5e;
|
|
54
61
|
--color-login-200: #727272;
|
|
55
|
-
--color-login-100: #b0b0b0;
|
|
56
62
|
--color-login-50: #ededed;
|
|
57
63
|
}
|
|
58
64
|
}
|
|
@@ -208,6 +214,25 @@
|
|
|
208
214
|
.pointer-events-none {
|
|
209
215
|
pointer-events: none;
|
|
210
216
|
}
|
|
217
|
+
.link-corner-hover {
|
|
218
|
+
position: relative;
|
|
219
|
+
&::after {
|
|
220
|
+
content: ' ';
|
|
221
|
+
position: absolute;
|
|
222
|
+
width: .8em;
|
|
223
|
+
height: .8em;
|
|
224
|
+
bottom: .4em;
|
|
225
|
+
right: .4em;
|
|
226
|
+
border-right: .2em solid transparent;
|
|
227
|
+
border-bottom: .2em solid transparent;
|
|
228
|
+
transition: .2s;
|
|
229
|
+
}
|
|
230
|
+
&:hover::after {
|
|
231
|
+
border-color: var(--color-login);
|
|
232
|
+
right: 0;
|
|
233
|
+
bottom: 0;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
211
236
|
.sr-only {
|
|
212
237
|
position: absolute;
|
|
213
238
|
width: 1px;
|
|
@@ -231,12 +256,27 @@
|
|
|
231
256
|
.start-2 {
|
|
232
257
|
inset-inline-start: calc(var(--spacing) * 2);
|
|
233
258
|
}
|
|
259
|
+
.top-0 {
|
|
260
|
+
top: calc(var(--spacing) * 0);
|
|
261
|
+
}
|
|
234
262
|
.top-1\/2 {
|
|
235
263
|
top: calc(1/2 * 100%);
|
|
236
264
|
}
|
|
237
265
|
.top-2 {
|
|
238
266
|
top: calc(var(--spacing) * 2);
|
|
239
267
|
}
|
|
268
|
+
.top-4 {
|
|
269
|
+
top: calc(var(--spacing) * 4);
|
|
270
|
+
}
|
|
271
|
+
.top-6 {
|
|
272
|
+
top: calc(var(--spacing) * 6);
|
|
273
|
+
}
|
|
274
|
+
.top-7 {
|
|
275
|
+
top: calc(var(--spacing) * 7);
|
|
276
|
+
}
|
|
277
|
+
.top-16 {
|
|
278
|
+
top: calc(var(--spacing) * 16);
|
|
279
|
+
}
|
|
240
280
|
.right-0 {
|
|
241
281
|
right: calc(var(--spacing) * 0);
|
|
242
282
|
}
|
|
@@ -249,6 +289,9 @@
|
|
|
249
289
|
.bottom-4 {
|
|
250
290
|
bottom: calc(var(--spacing) * 4);
|
|
251
291
|
}
|
|
292
|
+
.left-0 {
|
|
293
|
+
left: calc(var(--spacing) * 0);
|
|
294
|
+
}
|
|
252
295
|
.left-2 {
|
|
253
296
|
left: calc(var(--spacing) * 2);
|
|
254
297
|
}
|
|
@@ -267,6 +310,12 @@
|
|
|
267
310
|
.z-50 {
|
|
268
311
|
z-index: 50;
|
|
269
312
|
}
|
|
313
|
+
.z-900 {
|
|
314
|
+
z-index: 900;
|
|
315
|
+
}
|
|
316
|
+
.m-auto {
|
|
317
|
+
margin: auto;
|
|
318
|
+
}
|
|
270
319
|
.mx-auto {
|
|
271
320
|
margin-inline: auto;
|
|
272
321
|
}
|
|
@@ -279,6 +328,9 @@
|
|
|
279
328
|
.mb-2 {
|
|
280
329
|
margin-bottom: calc(var(--spacing) * 2);
|
|
281
330
|
}
|
|
331
|
+
.-ml-4 {
|
|
332
|
+
margin-left: calc(var(--spacing) * -4);
|
|
333
|
+
}
|
|
282
334
|
.ml-1 {
|
|
283
335
|
margin-left: calc(var(--spacing) * 1);
|
|
284
336
|
}
|
|
@@ -303,27 +355,51 @@
|
|
|
303
355
|
.hidden {
|
|
304
356
|
display: none;
|
|
305
357
|
}
|
|
306
|
-
.inline {
|
|
307
|
-
display: inline;
|
|
308
|
-
}
|
|
309
358
|
.aspect-\[3\/1\] {
|
|
310
359
|
aspect-ratio: 3/1;
|
|
311
360
|
}
|
|
361
|
+
.h-0 {
|
|
362
|
+
height: calc(var(--spacing) * 0);
|
|
363
|
+
}
|
|
364
|
+
.h-0\.5 {
|
|
365
|
+
height: calc(var(--spacing) * 0.5);
|
|
366
|
+
}
|
|
312
367
|
.h-4 {
|
|
313
368
|
height: calc(var(--spacing) * 4);
|
|
314
369
|
}
|
|
370
|
+
.h-5 {
|
|
371
|
+
height: calc(var(--spacing) * 5);
|
|
372
|
+
}
|
|
315
373
|
.h-6 {
|
|
316
374
|
height: calc(var(--spacing) * 6);
|
|
317
375
|
}
|
|
318
376
|
.h-10 {
|
|
319
377
|
height: calc(var(--spacing) * 10);
|
|
320
378
|
}
|
|
379
|
+
.h-11 {
|
|
380
|
+
height: calc(var(--spacing) * 11);
|
|
381
|
+
}
|
|
321
382
|
.h-12 {
|
|
322
383
|
height: calc(var(--spacing) * 12);
|
|
323
384
|
}
|
|
385
|
+
.h-16 {
|
|
386
|
+
height: calc(var(--spacing) * 16);
|
|
387
|
+
}
|
|
324
388
|
.h-full {
|
|
325
389
|
height: 100%;
|
|
326
390
|
}
|
|
391
|
+
.h-screen {
|
|
392
|
+
height: 100vh;
|
|
393
|
+
}
|
|
394
|
+
.max-h-0 {
|
|
395
|
+
max-height: calc(var(--spacing) * 0);
|
|
396
|
+
}
|
|
397
|
+
.max-h-\[calc\(100vh-4rem\)\] {
|
|
398
|
+
max-height: calc(100vh - 4rem);
|
|
399
|
+
}
|
|
400
|
+
.min-h-16 {
|
|
401
|
+
min-height: calc(var(--spacing) * 16);
|
|
402
|
+
}
|
|
327
403
|
.w-4 {
|
|
328
404
|
width: calc(var(--spacing) * 4);
|
|
329
405
|
}
|
|
@@ -333,15 +409,33 @@
|
|
|
333
409
|
.w-6 {
|
|
334
410
|
width: calc(var(--spacing) * 6);
|
|
335
411
|
}
|
|
412
|
+
.w-8 {
|
|
413
|
+
width: calc(var(--spacing) * 8);
|
|
414
|
+
}
|
|
336
415
|
.w-10 {
|
|
337
416
|
width: calc(var(--spacing) * 10);
|
|
338
417
|
}
|
|
418
|
+
.w-12 {
|
|
419
|
+
width: calc(var(--spacing) * 12);
|
|
420
|
+
}
|
|
339
421
|
.w-\[4\.3rem\] {
|
|
340
422
|
width: 4.3rem;
|
|
341
423
|
}
|
|
424
|
+
.w-\[30px\] {
|
|
425
|
+
width: 30px;
|
|
426
|
+
}
|
|
427
|
+
.w-\[calc\(100\%-2rem\)\] {
|
|
428
|
+
width: calc(100% - 2rem);
|
|
429
|
+
}
|
|
342
430
|
.w-\[calc\(100\%-10px\)\] {
|
|
343
431
|
width: calc(100% - 10px);
|
|
344
432
|
}
|
|
433
|
+
.w-\[calc\(100vw-8rem\)\] {
|
|
434
|
+
width: calc(100vw - 8rem);
|
|
435
|
+
}
|
|
436
|
+
.w-auto {
|
|
437
|
+
width: auto;
|
|
438
|
+
}
|
|
345
439
|
.w-fit {
|
|
346
440
|
width: fit-content;
|
|
347
441
|
}
|
|
@@ -360,6 +454,15 @@
|
|
|
360
454
|
.max-w-3xs {
|
|
361
455
|
max-width: var(--container-3xs);
|
|
362
456
|
}
|
|
457
|
+
.max-w-6xl {
|
|
458
|
+
max-width: var(--container-6xl);
|
|
459
|
+
}
|
|
460
|
+
.max-w-\[35rem\] {
|
|
461
|
+
max-width: 35rem;
|
|
462
|
+
}
|
|
463
|
+
.max-w-\[50rem\] {
|
|
464
|
+
max-width: 50rem;
|
|
465
|
+
}
|
|
363
466
|
.max-w-md {
|
|
364
467
|
max-width: var(--container-md);
|
|
365
468
|
}
|
|
@@ -401,6 +504,10 @@
|
|
|
401
504
|
--tw-translate-y: calc(var(--spacing) * -5);
|
|
402
505
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
403
506
|
}
|
|
507
|
+
.translate-y-0 {
|
|
508
|
+
--tw-translate-y: calc(var(--spacing) * 0);
|
|
509
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
510
|
+
}
|
|
404
511
|
.scale-75 {
|
|
405
512
|
--tw-scale-x: 75%;
|
|
406
513
|
--tw-scale-y: 75%;
|
|
@@ -416,6 +523,15 @@
|
|
|
416
523
|
.scale-\[1\.9\] {
|
|
417
524
|
scale: 1.9;
|
|
418
525
|
}
|
|
526
|
+
.-rotate-45 {
|
|
527
|
+
rotate: calc(45deg * -1);
|
|
528
|
+
}
|
|
529
|
+
.rotate-45 {
|
|
530
|
+
rotate: 45deg;
|
|
531
|
+
}
|
|
532
|
+
.rotate-180 {
|
|
533
|
+
rotate: 180deg;
|
|
534
|
+
}
|
|
419
535
|
.transform {
|
|
420
536
|
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
421
537
|
}
|
|
@@ -425,6 +541,9 @@
|
|
|
425
541
|
.cursor-pointer {
|
|
426
542
|
cursor: pointer;
|
|
427
543
|
}
|
|
544
|
+
.list-none {
|
|
545
|
+
list-style-type: none;
|
|
546
|
+
}
|
|
428
547
|
.appearance-none {
|
|
429
548
|
appearance: none;
|
|
430
549
|
}
|
|
@@ -475,9 +594,18 @@
|
|
|
475
594
|
text-overflow: ellipsis;
|
|
476
595
|
white-space: nowrap;
|
|
477
596
|
}
|
|
597
|
+
.overflow-hidden {
|
|
598
|
+
overflow: hidden;
|
|
599
|
+
}
|
|
478
600
|
.rounded {
|
|
479
601
|
border-radius: 0.25rem;
|
|
480
602
|
}
|
|
603
|
+
.rounded-\[0\.3rem\] {
|
|
604
|
+
border-radius: 0.3rem;
|
|
605
|
+
}
|
|
606
|
+
.rounded-\[0\.4rem\] {
|
|
607
|
+
border-radius: 0.4rem;
|
|
608
|
+
}
|
|
481
609
|
.rounded-full {
|
|
482
610
|
border-radius: calc(infinity * 1px);
|
|
483
611
|
}
|
|
@@ -508,6 +636,12 @@
|
|
|
508
636
|
.border-login-200 {
|
|
509
637
|
border-color: var(--color-login-200);
|
|
510
638
|
}
|
|
639
|
+
.bg-\[\#181818f0\] {
|
|
640
|
+
background-color: #181818f0;
|
|
641
|
+
}
|
|
642
|
+
.bg-\[\#18181899\] {
|
|
643
|
+
background-color: #18181899;
|
|
644
|
+
}
|
|
511
645
|
.bg-login {
|
|
512
646
|
background-color: var(--color-login);
|
|
513
647
|
}
|
|
@@ -523,15 +657,30 @@
|
|
|
523
657
|
.bg-login-700 {
|
|
524
658
|
background-color: var(--color-login-700);
|
|
525
659
|
}
|
|
660
|
+
.bg-login-700\/98 {
|
|
661
|
+
background-color: color-mix(in srgb, #1a1a1a 98%, transparent);
|
|
662
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
663
|
+
background-color: color-mix(in oklab, var(--color-login-700) 98%, transparent);
|
|
664
|
+
}
|
|
665
|
+
}
|
|
526
666
|
.bg-login-800 {
|
|
527
667
|
background-color: var(--color-login-800);
|
|
528
668
|
}
|
|
529
669
|
.bg-login-900 {
|
|
530
670
|
background-color: var(--color-login-900);
|
|
531
671
|
}
|
|
672
|
+
.bg-login-900\/20 {
|
|
673
|
+
background-color: color-mix(in srgb, #121212 20%, transparent);
|
|
674
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
675
|
+
background-color: color-mix(in oklab, var(--color-login-900) 20%, transparent);
|
|
676
|
+
}
|
|
677
|
+
}
|
|
532
678
|
.bg-transparent {
|
|
533
679
|
background-color: transparent;
|
|
534
680
|
}
|
|
681
|
+
.bg-none {
|
|
682
|
+
background-image: none;
|
|
683
|
+
}
|
|
535
684
|
.fill-\[var\(--foreground\)\] {
|
|
536
685
|
fill: var(--foreground);
|
|
537
686
|
}
|
|
@@ -550,6 +699,9 @@
|
|
|
550
699
|
.stroke-\[var\(--color-login\)\] {
|
|
551
700
|
stroke: var(--color-login);
|
|
552
701
|
}
|
|
702
|
+
.stroke-login {
|
|
703
|
+
stroke: var(--color-login);
|
|
704
|
+
}
|
|
553
705
|
.stroke-3 {
|
|
554
706
|
stroke-width: 3;
|
|
555
707
|
}
|
|
@@ -601,12 +753,18 @@
|
|
|
601
753
|
.py-3 {
|
|
602
754
|
padding-block: calc(var(--spacing) * 3);
|
|
603
755
|
}
|
|
756
|
+
.py-5 {
|
|
757
|
+
padding-block: calc(var(--spacing) * 5);
|
|
758
|
+
}
|
|
604
759
|
.py-12 {
|
|
605
760
|
padding-block: calc(var(--spacing) * 12);
|
|
606
761
|
}
|
|
607
762
|
.pt-1 {
|
|
608
763
|
padding-top: calc(var(--spacing) * 1);
|
|
609
764
|
}
|
|
765
|
+
.pt-2 {
|
|
766
|
+
padding-top: calc(var(--spacing) * 2);
|
|
767
|
+
}
|
|
610
768
|
.pt-3 {
|
|
611
769
|
padding-top: calc(var(--spacing) * 3);
|
|
612
770
|
}
|
|
@@ -616,15 +774,31 @@
|
|
|
616
774
|
.pr-1 {
|
|
617
775
|
padding-right: calc(var(--spacing) * 1);
|
|
618
776
|
}
|
|
777
|
+
.pr-4 {
|
|
778
|
+
padding-right: calc(var(--spacing) * 4);
|
|
779
|
+
}
|
|
619
780
|
.pb-1 {
|
|
620
781
|
padding-bottom: calc(var(--spacing) * 1);
|
|
621
782
|
}
|
|
622
783
|
.pb-2\.5 {
|
|
623
784
|
padding-bottom: calc(var(--spacing) * 2.5);
|
|
624
785
|
}
|
|
786
|
+
.pb-4 {
|
|
787
|
+
padding-bottom: calc(var(--spacing) * 4);
|
|
788
|
+
}
|
|
789
|
+
.pl-4 {
|
|
790
|
+
padding-left: calc(var(--spacing) * 4);
|
|
791
|
+
}
|
|
625
792
|
.text-center {
|
|
626
793
|
text-align: center;
|
|
627
794
|
}
|
|
795
|
+
.text-left {
|
|
796
|
+
text-align: left;
|
|
797
|
+
}
|
|
798
|
+
.text-2xl {
|
|
799
|
+
font-size: var(--text-2xl);
|
|
800
|
+
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
801
|
+
}
|
|
628
802
|
.text-3xl {
|
|
629
803
|
font-size: var(--text-3xl);
|
|
630
804
|
line-height: var(--tw-leading, var(--text-3xl--line-height));
|
|
@@ -645,6 +819,14 @@
|
|
|
645
819
|
font-size: var(--text-xl);
|
|
646
820
|
line-height: var(--tw-leading, var(--text-xl--line-height));
|
|
647
821
|
}
|
|
822
|
+
.leading-4 {
|
|
823
|
+
--tw-leading: calc(var(--spacing) * 4);
|
|
824
|
+
line-height: calc(var(--spacing) * 4);
|
|
825
|
+
}
|
|
826
|
+
.leading-6 {
|
|
827
|
+
--tw-leading: calc(var(--spacing) * 6);
|
|
828
|
+
line-height: calc(var(--spacing) * 6);
|
|
829
|
+
}
|
|
648
830
|
.leading-8 {
|
|
649
831
|
--tw-leading: calc(var(--spacing) * 8);
|
|
650
832
|
line-height: calc(var(--spacing) * 8);
|
|
@@ -661,10 +843,21 @@
|
|
|
661
843
|
--tw-font-weight: var(--font-weight-medium);
|
|
662
844
|
font-weight: var(--font-weight-medium);
|
|
663
845
|
}
|
|
846
|
+
.font-semibold {
|
|
847
|
+
--tw-font-weight: var(--font-weight-semibold);
|
|
848
|
+
font-weight: var(--font-weight-semibold);
|
|
849
|
+
}
|
|
850
|
+
.tracking-\[0\.05em\] {
|
|
851
|
+
--tw-tracking: 0.05em;
|
|
852
|
+
letter-spacing: 0.05em;
|
|
853
|
+
}
|
|
664
854
|
.tracking-tight {
|
|
665
855
|
--tw-tracking: var(--tracking-tight);
|
|
666
856
|
letter-spacing: var(--tracking-tight);
|
|
667
857
|
}
|
|
858
|
+
.whitespace-nowrap {
|
|
859
|
+
white-space: nowrap;
|
|
860
|
+
}
|
|
668
861
|
.text-blue-300\/70 {
|
|
669
862
|
color: color-mix(in srgb, oklch(80.9% 0.105 251.813) 70%, transparent);
|
|
670
863
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -683,9 +876,6 @@
|
|
|
683
876
|
.text-login-50 {
|
|
684
877
|
color: var(--color-login-50);
|
|
685
878
|
}
|
|
686
|
-
.text-login-100 {
|
|
687
|
-
color: var(--color-login-100);
|
|
688
|
-
}
|
|
689
879
|
.text-red-300\/70 {
|
|
690
880
|
color: color-mix(in srgb, oklch(80.8% 0.114 19.571) 70%, transparent);
|
|
691
881
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -701,22 +891,37 @@
|
|
|
701
891
|
.text-red-700 {
|
|
702
892
|
color: var(--color-red-700);
|
|
703
893
|
}
|
|
894
|
+
.text-white {
|
|
895
|
+
color: var(--color-white);
|
|
896
|
+
}
|
|
704
897
|
.text-yellow-300\/70 {
|
|
705
898
|
color: color-mix(in srgb, oklch(90.5% 0.182 98.111) 70%, transparent);
|
|
706
899
|
@supports (color: color-mix(in lab, red, red)) {
|
|
707
900
|
color: color-mix(in oklab, var(--color-yellow-300) 70%, transparent);
|
|
708
901
|
}
|
|
709
902
|
}
|
|
903
|
+
.no-underline {
|
|
904
|
+
text-decoration-line: none;
|
|
905
|
+
}
|
|
710
906
|
.opacity-0 {
|
|
711
907
|
opacity: 0%;
|
|
712
908
|
}
|
|
713
909
|
.opacity-100 {
|
|
714
910
|
opacity: 100%;
|
|
715
911
|
}
|
|
912
|
+
.shadow-\[0_0\.1rem_0\.5rem_rgba\(3\,3\,3\,0\.5\)\] {
|
|
913
|
+
--tw-shadow: 0 0.1rem 0.5rem var(--tw-shadow-color, rgba(3,3,3,0.5));
|
|
914
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
915
|
+
}
|
|
716
916
|
.shadow-md {
|
|
717
917
|
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
718
918
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
719
919
|
}
|
|
920
|
+
.backdrop-blur-xl {
|
|
921
|
+
--tw-backdrop-blur: blur(var(--blur-xl));
|
|
922
|
+
-webkit-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,);
|
|
923
|
+
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,);
|
|
924
|
+
}
|
|
720
925
|
.transition {
|
|
721
926
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
|
|
722
927
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -727,6 +932,11 @@
|
|
|
727
932
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
728
933
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
729
934
|
}
|
|
935
|
+
.transition-colors {
|
|
936
|
+
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
937
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
938
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
939
|
+
}
|
|
730
940
|
.transition-opacity {
|
|
731
941
|
transition-property: opacity;
|
|
732
942
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -749,14 +959,113 @@
|
|
|
749
959
|
--tw-duration: 400ms;
|
|
750
960
|
transition-duration: 400ms;
|
|
751
961
|
}
|
|
962
|
+
.duration-500 {
|
|
963
|
+
--tw-duration: 500ms;
|
|
964
|
+
transition-duration: 500ms;
|
|
965
|
+
}
|
|
752
966
|
.duration-1000 {
|
|
753
967
|
--tw-duration: 1000ms;
|
|
754
968
|
transition-duration: 1000ms;
|
|
755
969
|
}
|
|
970
|
+
.duration-\[400ms\] {
|
|
971
|
+
--tw-duration: 400ms;
|
|
972
|
+
transition-duration: 400ms;
|
|
973
|
+
}
|
|
974
|
+
.duration-\[600ms\] {
|
|
975
|
+
--tw-duration: 600ms;
|
|
976
|
+
transition-duration: 600ms;
|
|
977
|
+
}
|
|
978
|
+
.ease-in-out {
|
|
979
|
+
--tw-ease: var(--ease-in-out);
|
|
980
|
+
transition-timing-function: var(--ease-in-out);
|
|
981
|
+
}
|
|
982
|
+
.ease-out {
|
|
983
|
+
--tw-ease: var(--ease-out);
|
|
984
|
+
transition-timing-function: var(--ease-out);
|
|
985
|
+
}
|
|
756
986
|
.outline-none {
|
|
757
987
|
--tw-outline-style: none;
|
|
758
988
|
outline-style: none;
|
|
759
989
|
}
|
|
990
|
+
.group-focus-within\:pointer-events-auto {
|
|
991
|
+
&:is(:where(.group):focus-within *) {
|
|
992
|
+
pointer-events: auto;
|
|
993
|
+
}
|
|
994
|
+
}
|
|
995
|
+
.group-focus-within\:translate-y-0 {
|
|
996
|
+
&:is(:where(.group):focus-within *) {
|
|
997
|
+
--tw-translate-y: calc(var(--spacing) * 0);
|
|
998
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
999
|
+
}
|
|
1000
|
+
}
|
|
1001
|
+
.group-focus-within\:opacity-100 {
|
|
1002
|
+
&:is(:where(.group):focus-within *) {
|
|
1003
|
+
opacity: 100%;
|
|
1004
|
+
}
|
|
1005
|
+
}
|
|
1006
|
+
.group-hover\:pointer-events-auto {
|
|
1007
|
+
&:is(:where(.group):hover *) {
|
|
1008
|
+
@media (hover: hover) {
|
|
1009
|
+
pointer-events: auto;
|
|
1010
|
+
}
|
|
1011
|
+
}
|
|
1012
|
+
}
|
|
1013
|
+
.group-hover\:translate-y-0 {
|
|
1014
|
+
&:is(:where(.group):hover *) {
|
|
1015
|
+
@media (hover: hover) {
|
|
1016
|
+
--tw-translate-y: calc(var(--spacing) * 0);
|
|
1017
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1018
|
+
}
|
|
1019
|
+
}
|
|
1020
|
+
}
|
|
1021
|
+
.group-hover\:opacity-100 {
|
|
1022
|
+
&:is(:where(.group):hover *) {
|
|
1023
|
+
@media (hover: hover) {
|
|
1024
|
+
opacity: 100%;
|
|
1025
|
+
}
|
|
1026
|
+
}
|
|
1027
|
+
}
|
|
1028
|
+
.group-\[\.dropdown\]\:h-auto {
|
|
1029
|
+
&:is(:where(.group):is(.dropdown) *) {
|
|
1030
|
+
height: auto;
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
1033
|
+
.group-\[\.dropdown\]\:p-0 {
|
|
1034
|
+
&:is(:where(.group):is(.dropdown) *) {
|
|
1035
|
+
padding: calc(var(--spacing) * 0);
|
|
1036
|
+
}
|
|
1037
|
+
}
|
|
1038
|
+
.group-\[\.dropdown\]\:p-2\.5 {
|
|
1039
|
+
&:is(:where(.group):is(.dropdown) *) {
|
|
1040
|
+
padding: calc(var(--spacing) * 2.5);
|
|
1041
|
+
}
|
|
1042
|
+
}
|
|
1043
|
+
.group-\[\.dropdown\]\:py-2\.5 {
|
|
1044
|
+
&:is(:where(.group):is(.dropdown) *) {
|
|
1045
|
+
padding-block: calc(var(--spacing) * 2.5);
|
|
1046
|
+
}
|
|
1047
|
+
}
|
|
1048
|
+
.group-\[\.dropdown\]\:pr-3 {
|
|
1049
|
+
&:is(:where(.group):is(.dropdown) *) {
|
|
1050
|
+
padding-right: calc(var(--spacing) * 3);
|
|
1051
|
+
}
|
|
1052
|
+
}
|
|
1053
|
+
.group-\[\.dropdown\]\:pl-1 {
|
|
1054
|
+
&:is(:where(.group):is(.dropdown) *) {
|
|
1055
|
+
padding-left: calc(var(--spacing) * 1);
|
|
1056
|
+
}
|
|
1057
|
+
}
|
|
1058
|
+
.group-\[\.dropdown\]\:pl-4 {
|
|
1059
|
+
&:is(:where(.group):is(.dropdown) *) {
|
|
1060
|
+
padding-left: calc(var(--spacing) * 4);
|
|
1061
|
+
}
|
|
1062
|
+
}
|
|
1063
|
+
.group-\[\.dropdown\]\:text-lg {
|
|
1064
|
+
&:is(:where(.group):is(.dropdown) *) {
|
|
1065
|
+
font-size: var(--text-lg);
|
|
1066
|
+
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
1067
|
+
}
|
|
1068
|
+
}
|
|
760
1069
|
.group-\[\.submitPressed\]\:text-red-500\/50 {
|
|
761
1070
|
&:is(:where(.group):is(.submitPressed) *) {
|
|
762
1071
|
color: color-mix(in srgb, oklch(63.7% 0.237 25.331) 50%, transparent);
|
|
@@ -801,12 +1110,163 @@
|
|
|
801
1110
|
padding-inline: calc(var(--spacing) * 2);
|
|
802
1111
|
}
|
|
803
1112
|
}
|
|
1113
|
+
.before\:absolute {
|
|
1114
|
+
&::before {
|
|
1115
|
+
content: var(--tw-content);
|
|
1116
|
+
position: absolute;
|
|
1117
|
+
}
|
|
1118
|
+
}
|
|
1119
|
+
.before\:top-0 {
|
|
1120
|
+
&::before {
|
|
1121
|
+
content: var(--tw-content);
|
|
1122
|
+
top: calc(var(--spacing) * 0);
|
|
1123
|
+
}
|
|
1124
|
+
}
|
|
1125
|
+
.before\:left-1\/2 {
|
|
1126
|
+
&::before {
|
|
1127
|
+
content: var(--tw-content);
|
|
1128
|
+
left: calc(1/2 * 100%);
|
|
1129
|
+
}
|
|
1130
|
+
}
|
|
1131
|
+
.before\:h-\[10px\] {
|
|
1132
|
+
&::before {
|
|
1133
|
+
content: var(--tw-content);
|
|
1134
|
+
height: 10px;
|
|
1135
|
+
}
|
|
1136
|
+
}
|
|
1137
|
+
.before\:w-\[10px\] {
|
|
1138
|
+
&::before {
|
|
1139
|
+
content: var(--tw-content);
|
|
1140
|
+
width: 10px;
|
|
1141
|
+
}
|
|
1142
|
+
}
|
|
1143
|
+
.before\:-translate-x-1\/2 {
|
|
1144
|
+
&::before {
|
|
1145
|
+
content: var(--tw-content);
|
|
1146
|
+
--tw-translate-x: calc(calc(1/2 * 100%) * -1);
|
|
1147
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1148
|
+
}
|
|
1149
|
+
}
|
|
1150
|
+
.before\:rounded-full {
|
|
1151
|
+
&::before {
|
|
1152
|
+
content: var(--tw-content);
|
|
1153
|
+
border-radius: calc(infinity * 1px);
|
|
1154
|
+
}
|
|
1155
|
+
}
|
|
1156
|
+
.before\:border-2 {
|
|
1157
|
+
&::before {
|
|
1158
|
+
content: var(--tw-content);
|
|
1159
|
+
border-style: var(--tw-border-style);
|
|
1160
|
+
border-width: 2px;
|
|
1161
|
+
}
|
|
1162
|
+
}
|
|
1163
|
+
.before\:border-login-50 {
|
|
1164
|
+
&::before {
|
|
1165
|
+
content: var(--tw-content);
|
|
1166
|
+
border-color: var(--color-login-50);
|
|
1167
|
+
}
|
|
1168
|
+
}
|
|
1169
|
+
.before\:bg-transparent {
|
|
1170
|
+
&::before {
|
|
1171
|
+
content: var(--tw-content);
|
|
1172
|
+
background-color: transparent;
|
|
1173
|
+
}
|
|
1174
|
+
}
|
|
1175
|
+
.before\:content-\[\"\"\] {
|
|
1176
|
+
&::before {
|
|
1177
|
+
--tw-content: "";
|
|
1178
|
+
content: var(--tw-content);
|
|
1179
|
+
}
|
|
1180
|
+
}
|
|
1181
|
+
.after\:absolute {
|
|
1182
|
+
&::after {
|
|
1183
|
+
content: var(--tw-content);
|
|
1184
|
+
position: absolute;
|
|
1185
|
+
}
|
|
1186
|
+
}
|
|
1187
|
+
.after\:bottom-0 {
|
|
1188
|
+
&::after {
|
|
1189
|
+
content: var(--tw-content);
|
|
1190
|
+
bottom: calc(var(--spacing) * 0);
|
|
1191
|
+
}
|
|
1192
|
+
}
|
|
1193
|
+
.after\:left-1\/2 {
|
|
1194
|
+
&::after {
|
|
1195
|
+
content: var(--tw-content);
|
|
1196
|
+
left: calc(1/2 * 100%);
|
|
1197
|
+
}
|
|
1198
|
+
}
|
|
1199
|
+
.after\:h-2 {
|
|
1200
|
+
&::after {
|
|
1201
|
+
content: var(--tw-content);
|
|
1202
|
+
height: calc(var(--spacing) * 2);
|
|
1203
|
+
}
|
|
1204
|
+
}
|
|
1205
|
+
.after\:w-\[18px\] {
|
|
1206
|
+
&::after {
|
|
1207
|
+
content: var(--tw-content);
|
|
1208
|
+
width: 18px;
|
|
1209
|
+
}
|
|
1210
|
+
}
|
|
1211
|
+
.after\:-translate-x-1\/2 {
|
|
1212
|
+
&::after {
|
|
1213
|
+
content: var(--tw-content);
|
|
1214
|
+
--tw-translate-x: calc(calc(1/2 * 100%) * -1);
|
|
1215
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1216
|
+
}
|
|
1217
|
+
}
|
|
1218
|
+
.after\:rounded-t-\[22px\] {
|
|
1219
|
+
&::after {
|
|
1220
|
+
content: var(--tw-content);
|
|
1221
|
+
border-top-left-radius: 22px;
|
|
1222
|
+
border-top-right-radius: 22px;
|
|
1223
|
+
}
|
|
1224
|
+
}
|
|
1225
|
+
.after\:border-2 {
|
|
1226
|
+
&::after {
|
|
1227
|
+
content: var(--tw-content);
|
|
1228
|
+
border-style: var(--tw-border-style);
|
|
1229
|
+
border-width: 2px;
|
|
1230
|
+
}
|
|
1231
|
+
}
|
|
1232
|
+
.after\:border-b-0 {
|
|
1233
|
+
&::after {
|
|
1234
|
+
content: var(--tw-content);
|
|
1235
|
+
border-bottom-style: var(--tw-border-style);
|
|
1236
|
+
border-bottom-width: 0px;
|
|
1237
|
+
}
|
|
1238
|
+
}
|
|
1239
|
+
.after\:border-login-50 {
|
|
1240
|
+
&::after {
|
|
1241
|
+
content: var(--tw-content);
|
|
1242
|
+
border-color: var(--color-login-50);
|
|
1243
|
+
}
|
|
1244
|
+
}
|
|
1245
|
+
.after\:bg-transparent {
|
|
1246
|
+
&::after {
|
|
1247
|
+
content: var(--tw-content);
|
|
1248
|
+
background-color: transparent;
|
|
1249
|
+
}
|
|
1250
|
+
}
|
|
1251
|
+
.after\:content-\[\"\"\] {
|
|
1252
|
+
&::after {
|
|
1253
|
+
--tw-content: "";
|
|
1254
|
+
content: var(--tw-content);
|
|
1255
|
+
}
|
|
1256
|
+
}
|
|
804
1257
|
.after\:content-\[\"_\*\"\] {
|
|
805
1258
|
&::after {
|
|
806
1259
|
--tw-content: " *";
|
|
807
1260
|
content: var(--tw-content);
|
|
808
1261
|
}
|
|
809
1262
|
}
|
|
1263
|
+
.hover\:bg-\[\#6464641a\] {
|
|
1264
|
+
&:hover {
|
|
1265
|
+
@media (hover: hover) {
|
|
1266
|
+
background-color: #6464641a;
|
|
1267
|
+
}
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
810
1270
|
.hover\:bg-gray-400\/10 {
|
|
811
1271
|
&:hover {
|
|
812
1272
|
@media (hover: hover) {
|
|
@@ -868,6 +1328,51 @@
|
|
|
868
1328
|
outline-style: none;
|
|
869
1329
|
}
|
|
870
1330
|
}
|
|
1331
|
+
.\38 00px\:block {
|
|
1332
|
+
@media (width >= 800px) {
|
|
1333
|
+
display: block;
|
|
1334
|
+
}
|
|
1335
|
+
}
|
|
1336
|
+
.\38 00px\:flex {
|
|
1337
|
+
@media (width >= 800px) {
|
|
1338
|
+
display: flex;
|
|
1339
|
+
}
|
|
1340
|
+
}
|
|
1341
|
+
.\38 00px\:hidden {
|
|
1342
|
+
@media (width >= 800px) {
|
|
1343
|
+
display: none;
|
|
1344
|
+
}
|
|
1345
|
+
}
|
|
1346
|
+
.\38 00px\:h-20 {
|
|
1347
|
+
@media (width >= 800px) {
|
|
1348
|
+
height: calc(var(--spacing) * 20);
|
|
1349
|
+
}
|
|
1350
|
+
}
|
|
1351
|
+
.\38 00px\:w-fit {
|
|
1352
|
+
@media (width >= 800px) {
|
|
1353
|
+
width: fit-content;
|
|
1354
|
+
}
|
|
1355
|
+
}
|
|
1356
|
+
.\38 00px\:items-center {
|
|
1357
|
+
@media (width >= 800px) {
|
|
1358
|
+
align-items: center;
|
|
1359
|
+
}
|
|
1360
|
+
}
|
|
1361
|
+
.\38 00px\:justify-between {
|
|
1362
|
+
@media (width >= 800px) {
|
|
1363
|
+
justify-content: space-between;
|
|
1364
|
+
}
|
|
1365
|
+
}
|
|
1366
|
+
.\38 00px\:p-0 {
|
|
1367
|
+
@media (width >= 800px) {
|
|
1368
|
+
padding: calc(var(--spacing) * 0);
|
|
1369
|
+
}
|
|
1370
|
+
}
|
|
1371
|
+
.\38 00px\:p-4 {
|
|
1372
|
+
@media (width >= 800px) {
|
|
1373
|
+
padding: calc(var(--spacing) * 4);
|
|
1374
|
+
}
|
|
1375
|
+
}
|
|
871
1376
|
.sm\:px-12 {
|
|
872
1377
|
@media (width >= 40rem) {
|
|
873
1378
|
padding-inline: calc(var(--spacing) * 12);
|
|
@@ -1057,10 +1562,50 @@ body {
|
|
|
1057
1562
|
inherits: false;
|
|
1058
1563
|
initial-value: 0 0 #0000;
|
|
1059
1564
|
}
|
|
1565
|
+
@property --tw-backdrop-blur {
|
|
1566
|
+
syntax: "*";
|
|
1567
|
+
inherits: false;
|
|
1568
|
+
}
|
|
1569
|
+
@property --tw-backdrop-brightness {
|
|
1570
|
+
syntax: "*";
|
|
1571
|
+
inherits: false;
|
|
1572
|
+
}
|
|
1573
|
+
@property --tw-backdrop-contrast {
|
|
1574
|
+
syntax: "*";
|
|
1575
|
+
inherits: false;
|
|
1576
|
+
}
|
|
1577
|
+
@property --tw-backdrop-grayscale {
|
|
1578
|
+
syntax: "*";
|
|
1579
|
+
inherits: false;
|
|
1580
|
+
}
|
|
1581
|
+
@property --tw-backdrop-hue-rotate {
|
|
1582
|
+
syntax: "*";
|
|
1583
|
+
inherits: false;
|
|
1584
|
+
}
|
|
1585
|
+
@property --tw-backdrop-invert {
|
|
1586
|
+
syntax: "*";
|
|
1587
|
+
inherits: false;
|
|
1588
|
+
}
|
|
1589
|
+
@property --tw-backdrop-opacity {
|
|
1590
|
+
syntax: "*";
|
|
1591
|
+
inherits: false;
|
|
1592
|
+
}
|
|
1593
|
+
@property --tw-backdrop-saturate {
|
|
1594
|
+
syntax: "*";
|
|
1595
|
+
inherits: false;
|
|
1596
|
+
}
|
|
1597
|
+
@property --tw-backdrop-sepia {
|
|
1598
|
+
syntax: "*";
|
|
1599
|
+
inherits: false;
|
|
1600
|
+
}
|
|
1060
1601
|
@property --tw-duration {
|
|
1061
1602
|
syntax: "*";
|
|
1062
1603
|
inherits: false;
|
|
1063
1604
|
}
|
|
1605
|
+
@property --tw-ease {
|
|
1606
|
+
syntax: "*";
|
|
1607
|
+
inherits: false;
|
|
1608
|
+
}
|
|
1064
1609
|
@property --tw-content {
|
|
1065
1610
|
syntax: "*";
|
|
1066
1611
|
initial-value: "";
|
|
@@ -1098,8 +1643,18 @@ body {
|
|
|
1098
1643
|
--tw-ring-offset-width: 0px;
|
|
1099
1644
|
--tw-ring-offset-color: #fff;
|
|
1100
1645
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1646
|
+
--tw-backdrop-blur: initial;
|
|
1647
|
+
--tw-backdrop-brightness: initial;
|
|
1648
|
+
--tw-backdrop-contrast: initial;
|
|
1649
|
+
--tw-backdrop-grayscale: initial;
|
|
1650
|
+
--tw-backdrop-hue-rotate: initial;
|
|
1651
|
+
--tw-backdrop-invert: initial;
|
|
1652
|
+
--tw-backdrop-opacity: initial;
|
|
1653
|
+
--tw-backdrop-saturate: initial;
|
|
1654
|
+
--tw-backdrop-sepia: initial;
|
|
1101
1655
|
--tw-duration: initial;
|
|
1656
|
+
--tw-ease: initial;
|
|
1102
1657
|
--tw-content: "";
|
|
1103
1658
|
}
|
|
1104
1659
|
}
|
|
1105
|
-
}
|
|
1660
|
+
}
|