atomos_next_genesis 0.0.8 → 1.0.1
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.cjs +94 -35
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +19 -36
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +94 -35
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -409,34 +409,6 @@ video {
|
|
|
409
409
|
--primary-900: #194185;
|
|
410
410
|
}
|
|
411
411
|
|
|
412
|
-
/* .theme-primary {
|
|
413
|
-
--primary-25: #fafaff;
|
|
414
|
-
--primary-50: #f4f3ff;
|
|
415
|
-
--primary-100: #ebe9fe;
|
|
416
|
-
--primary-200: #d9d6fe;
|
|
417
|
-
--primary-300: #bdb4fe;
|
|
418
|
-
--primary-400: #9b8afb;
|
|
419
|
-
--primary-500: #7a5af8;
|
|
420
|
-
--primary-600: #6938ef;
|
|
421
|
-
--primary-700: #5925dc;
|
|
422
|
-
--primary-800: #4a1fb8;
|
|
423
|
-
--primary-900: #3e1c96;
|
|
424
|
-
} */
|
|
425
|
-
|
|
426
|
-
/* .theme-primary {
|
|
427
|
-
--primary-25: #ffffff;
|
|
428
|
-
--primary-50: #fff8e4;
|
|
429
|
-
--primary-100: #ffecba;
|
|
430
|
-
--primary-200: #ffe08f;
|
|
431
|
-
--primary-300: #ffd665;
|
|
432
|
-
--primary-400: #ffcb4c;
|
|
433
|
-
--primary-500: #ffc342;
|
|
434
|
-
--primary-600: #ffb53d;
|
|
435
|
-
--primary-700: #ffa33a;
|
|
436
|
-
--primary-800: #fd9438;
|
|
437
|
-
--primary-900: #f97835;
|
|
438
|
-
} */
|
|
439
|
-
|
|
440
412
|
/* Gray Colors */
|
|
441
413
|
--gray-25: #fff;
|
|
442
414
|
--gray-50: #f9fafb;
|
|
@@ -638,6 +610,12 @@ video {
|
|
|
638
610
|
.-left-1\.5 {
|
|
639
611
|
left: -0.375rem;
|
|
640
612
|
}
|
|
613
|
+
.-left-2 {
|
|
614
|
+
left: -0.5rem;
|
|
615
|
+
}
|
|
616
|
+
.-left-2\.5 {
|
|
617
|
+
left: -0.625rem;
|
|
618
|
+
}
|
|
641
619
|
.-top-1 {
|
|
642
620
|
top: -0.25rem;
|
|
643
621
|
}
|
|
@@ -758,6 +736,9 @@ video {
|
|
|
758
736
|
.top-10 {
|
|
759
737
|
top: 2.5rem;
|
|
760
738
|
}
|
|
739
|
+
.top-2 {
|
|
740
|
+
top: 0.5rem;
|
|
741
|
+
}
|
|
761
742
|
.top-2\/4 {
|
|
762
743
|
top: 50%;
|
|
763
744
|
}
|
|
@@ -776,9 +757,6 @@ video {
|
|
|
776
757
|
.top-full {
|
|
777
758
|
top: 100%;
|
|
778
759
|
}
|
|
779
|
-
.-z-10 {
|
|
780
|
-
z-index: -10;
|
|
781
|
-
}
|
|
782
760
|
.z-10 {
|
|
783
761
|
z-index: 10;
|
|
784
762
|
}
|
|
@@ -867,9 +845,6 @@ video {
|
|
|
867
845
|
margin-top: 1.25rem;
|
|
868
846
|
margin-bottom: 1.25rem;
|
|
869
847
|
}
|
|
870
|
-
.-ml-\[2px\] {
|
|
871
|
-
margin-left: -2px;
|
|
872
|
-
}
|
|
873
848
|
.-mt-1 {
|
|
874
849
|
margin-top: -0.25rem;
|
|
875
850
|
}
|
|
@@ -2607,9 +2582,9 @@ video {
|
|
|
2607
2582
|
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
2608
2583
|
}
|
|
2609
2584
|
|
|
2610
|
-
.test {
|
|
2585
|
+
/* .test {
|
|
2611
2586
|
border: 1px solid red;
|
|
2612
|
-
}
|
|
2587
|
+
} */
|
|
2613
2588
|
|
|
2614
2589
|
* {
|
|
2615
2590
|
box-sizing: border-box;
|
|
@@ -2964,6 +2939,10 @@ input[type="number"] {
|
|
|
2964
2939
|
border-color: var(--gray-800);
|
|
2965
2940
|
}
|
|
2966
2941
|
|
|
2942
|
+
.focus-within\:border-primary-600:focus-within {
|
|
2943
|
+
border-color: var(--primary-600);
|
|
2944
|
+
}
|
|
2945
|
+
|
|
2967
2946
|
.focus-within\:bg-gray-25:focus-within {
|
|
2968
2947
|
background-color: var(--gray-25);
|
|
2969
2948
|
}
|
|
@@ -3341,6 +3320,10 @@ input[type="number"] {
|
|
|
3341
3320
|
border-color: var(--gray-800);
|
|
3342
3321
|
}
|
|
3343
3322
|
|
|
3323
|
+
.focus-within\:hover\:border-primary-600:hover:focus-within {
|
|
3324
|
+
border-color: var(--primary-600);
|
|
3325
|
+
}
|
|
3326
|
+
|
|
3344
3327
|
.focus-within\:hover\:bg-gray-50:hover:focus-within {
|
|
3345
3328
|
background-color: var(--gray-50);
|
|
3346
3329
|
}
|