qt-ui-kit 1.0.98 → 1.0.100
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.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +103 -100
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +103 -100
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +26 -0
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -353,6 +353,9 @@
|
|
|
353
353
|
.max-h-full {
|
|
354
354
|
max-height: 100%;
|
|
355
355
|
}
|
|
356
|
+
.min-h-0 {
|
|
357
|
+
min-height: calc(var(--spacing) * 0);
|
|
358
|
+
}
|
|
356
359
|
.w-3\.5 {
|
|
357
360
|
width: calc(var(--spacing) * 3.5);
|
|
358
361
|
}
|
|
@@ -531,6 +534,9 @@
|
|
|
531
534
|
.overflow-y-auto {
|
|
532
535
|
overflow-y: auto;
|
|
533
536
|
}
|
|
537
|
+
.overscroll-contain {
|
|
538
|
+
overscroll-behavior: contain;
|
|
539
|
+
}
|
|
534
540
|
.rounded-2xl {
|
|
535
541
|
border-radius: var(--radius-2xl);
|
|
536
542
|
}
|
|
@@ -654,6 +660,9 @@
|
|
|
654
660
|
.bg-qtgreen-50 {
|
|
655
661
|
background-color: var(--color-qtgreen-50);
|
|
656
662
|
}
|
|
663
|
+
.bg-qtgreen-200 {
|
|
664
|
+
background-color: var(--color-qtgreen-200);
|
|
665
|
+
}
|
|
657
666
|
.bg-qtneutral-100 {
|
|
658
667
|
background-color: var(--color-qtneutral-100);
|
|
659
668
|
}
|
|
@@ -672,6 +681,9 @@
|
|
|
672
681
|
.bg-qtpurple-200 {
|
|
673
682
|
background-color: var(--color-qtpurple-200);
|
|
674
683
|
}
|
|
684
|
+
.bg-qtpurple-300 {
|
|
685
|
+
background-color: var(--color-qtpurple-300);
|
|
686
|
+
}
|
|
675
687
|
.bg-qtpurple-500 {
|
|
676
688
|
background-color: var(--color-qtpurple-500);
|
|
677
689
|
}
|
|
@@ -732,6 +744,9 @@
|
|
|
732
744
|
.pr-8 {
|
|
733
745
|
padding-right: calc(var(--spacing) * 8);
|
|
734
746
|
}
|
|
747
|
+
.pl-1 {
|
|
748
|
+
padding-left: calc(var(--spacing) * 1);
|
|
749
|
+
}
|
|
735
750
|
.pl-4 {
|
|
736
751
|
padding-left: calc(var(--spacing) * 4);
|
|
737
752
|
}
|
|
@@ -846,6 +861,9 @@
|
|
|
846
861
|
-moz-user-select: none;
|
|
847
862
|
user-select: none;
|
|
848
863
|
}
|
|
864
|
+
.\[scrollbar-gutter\:stable\] {
|
|
865
|
+
scrollbar-gutter: stable;
|
|
866
|
+
}
|
|
849
867
|
.placeholder\:text-gray-400 {
|
|
850
868
|
&::-moz-placeholder {
|
|
851
869
|
color: var(--color-gray-400);
|
|
@@ -925,6 +943,14 @@
|
|
|
925
943
|
line-height: 120%;
|
|
926
944
|
letter-spacing: 1%;
|
|
927
945
|
}
|
|
946
|
+
.label-1-bold {
|
|
947
|
+
font-family: Inter;
|
|
948
|
+
font-weight: 700;
|
|
949
|
+
font-style: Bold;
|
|
950
|
+
font-size: 14px;
|
|
951
|
+
line-height: 120%;
|
|
952
|
+
letter-spacing: 0.5%;
|
|
953
|
+
}
|
|
928
954
|
.label-2 {
|
|
929
955
|
font-family: Inter;
|
|
930
956
|
font-weight: 500;
|