qt-ui-kit 1.0.71 → 1.0.73
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 +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +359 -294
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +359 -294
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +9 -0
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -244,12 +244,18 @@
|
|
|
244
244
|
.left-\[-6px\] {
|
|
245
245
|
left: -6px;
|
|
246
246
|
}
|
|
247
|
+
.left-full {
|
|
248
|
+
left: 100%;
|
|
249
|
+
}
|
|
247
250
|
.z-0 {
|
|
248
251
|
z-index: 0;
|
|
249
252
|
}
|
|
250
253
|
.z-10 {
|
|
251
254
|
z-index: 10;
|
|
252
255
|
}
|
|
256
|
+
.z-50 {
|
|
257
|
+
z-index: 50;
|
|
258
|
+
}
|
|
253
259
|
.col-span-2 {
|
|
254
260
|
grid-column: span 2 / span 2;
|
|
255
261
|
}
|
|
@@ -262,6 +268,9 @@
|
|
|
262
268
|
.mb-2 {
|
|
263
269
|
margin-bottom: calc(var(--spacing) * 2);
|
|
264
270
|
}
|
|
271
|
+
.ml-2 {
|
|
272
|
+
margin-left: calc(var(--spacing) * 2);
|
|
273
|
+
}
|
|
265
274
|
.line-clamp-1 {
|
|
266
275
|
overflow: hidden;
|
|
267
276
|
display: -webkit-box;
|