qt-ui-kit 1.0.42 → 1.0.44
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 +9 -5
- package/dist/index.d.ts +9 -5
- package/dist/index.js +69 -79
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +69 -79
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +17 -2
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -219,6 +219,12 @@
|
|
|
219
219
|
.mb-2 {
|
|
220
220
|
margin-bottom: calc(var(--spacing) * 2);
|
|
221
221
|
}
|
|
222
|
+
.line-clamp-2 {
|
|
223
|
+
overflow: hidden;
|
|
224
|
+
display: -webkit-box;
|
|
225
|
+
-webkit-box-orient: vertical;
|
|
226
|
+
-webkit-line-clamp: 2;
|
|
227
|
+
}
|
|
222
228
|
.line-clamp-3 {
|
|
223
229
|
overflow: hidden;
|
|
224
230
|
display: -webkit-box;
|
|
@@ -280,6 +286,9 @@
|
|
|
280
286
|
height: -moz-min-content;
|
|
281
287
|
height: min-content;
|
|
282
288
|
}
|
|
289
|
+
.max-h-dvh {
|
|
290
|
+
max-height: 100dvh;
|
|
291
|
+
}
|
|
283
292
|
.max-h-full {
|
|
284
293
|
max-height: 100%;
|
|
285
294
|
}
|
|
@@ -409,8 +418,8 @@
|
|
|
409
418
|
margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
|
|
410
419
|
}
|
|
411
420
|
}
|
|
412
|
-
.overflow-auto {
|
|
413
|
-
overflow: auto;
|
|
421
|
+
.overflow-y-auto {
|
|
422
|
+
overflow-y: auto;
|
|
414
423
|
}
|
|
415
424
|
.rounded-2xl {
|
|
416
425
|
border-radius: var(--radius-2xl);
|
|
@@ -592,6 +601,9 @@
|
|
|
592
601
|
.pl-8 {
|
|
593
602
|
padding-left: calc(var(--spacing) * 8);
|
|
594
603
|
}
|
|
604
|
+
.text-center {
|
|
605
|
+
text-align: center;
|
|
606
|
+
}
|
|
595
607
|
.text-sm {
|
|
596
608
|
font-size: var(--text-sm);
|
|
597
609
|
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
@@ -603,6 +615,9 @@
|
|
|
603
615
|
.text-\[0\.7rem\] {
|
|
604
616
|
font-size: 0.7rem;
|
|
605
617
|
}
|
|
618
|
+
.text-\[9px\] {
|
|
619
|
+
font-size: 9px;
|
|
620
|
+
}
|
|
606
621
|
.text-\[14px\] {
|
|
607
622
|
font-size: 14px;
|
|
608
623
|
}
|