@copilotz/admin 0.9.40 → 0.9.41
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 +585 -106
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +20 -1
- package/dist/index.d.ts +20 -1
- package/dist/index.js +580 -109
- package/dist/index.js.map +1 -1
- package/dist/styles.css +42 -2
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -363,12 +363,24 @@
|
|
|
363
363
|
.ml-auto {
|
|
364
364
|
margin-left: auto;
|
|
365
365
|
}
|
|
366
|
+
.line-clamp-2 {
|
|
367
|
+
overflow: hidden;
|
|
368
|
+
display: -webkit-box;
|
|
369
|
+
-webkit-box-orient: vertical;
|
|
370
|
+
-webkit-line-clamp: 2;
|
|
371
|
+
}
|
|
366
372
|
.line-clamp-3 {
|
|
367
373
|
overflow: hidden;
|
|
368
374
|
display: -webkit-box;
|
|
369
375
|
-webkit-box-orient: vertical;
|
|
370
376
|
-webkit-line-clamp: 3;
|
|
371
377
|
}
|
|
378
|
+
.line-clamp-4 {
|
|
379
|
+
overflow: hidden;
|
|
380
|
+
display: -webkit-box;
|
|
381
|
+
-webkit-box-orient: vertical;
|
|
382
|
+
-webkit-line-clamp: 4;
|
|
383
|
+
}
|
|
372
384
|
.block {
|
|
373
385
|
display: block;
|
|
374
386
|
}
|
|
@@ -461,6 +473,9 @@
|
|
|
461
473
|
.h-\[320px\] {
|
|
462
474
|
height: 320px;
|
|
463
475
|
}
|
|
476
|
+
.h-\[380px\] {
|
|
477
|
+
height: 380px;
|
|
478
|
+
}
|
|
464
479
|
.h-\[420px\] {
|
|
465
480
|
height: 420px;
|
|
466
481
|
}
|
|
@@ -506,6 +521,9 @@
|
|
|
506
521
|
.min-h-\[220px\] {
|
|
507
522
|
min-height: 220px;
|
|
508
523
|
}
|
|
524
|
+
.min-h-\[300px\] {
|
|
525
|
+
min-height: 300px;
|
|
526
|
+
}
|
|
509
527
|
.min-h-\[360px\] {
|
|
510
528
|
min-height: 360px;
|
|
511
529
|
}
|
|
@@ -614,8 +632,8 @@
|
|
|
614
632
|
.max-w-\[180px\] {
|
|
615
633
|
max-width: 180px;
|
|
616
634
|
}
|
|
617
|
-
.max-w-\[
|
|
618
|
-
max-width:
|
|
635
|
+
.max-w-\[420px\] {
|
|
636
|
+
max-width: 420px;
|
|
619
637
|
}
|
|
620
638
|
.max-w-\[1600px\] {
|
|
621
639
|
max-width: 1600px;
|
|
@@ -2231,6 +2249,11 @@
|
|
|
2231
2249
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2232
2250
|
}
|
|
2233
2251
|
}
|
|
2252
|
+
.sm\:px-4 {
|
|
2253
|
+
@media (width >= 40rem) {
|
|
2254
|
+
padding-inline: calc(var(--spacing) * 4);
|
|
2255
|
+
}
|
|
2256
|
+
}
|
|
2234
2257
|
.md\:block {
|
|
2235
2258
|
@media (width >= 48rem) {
|
|
2236
2259
|
display: block;
|
|
@@ -2323,6 +2346,23 @@
|
|
|
2323
2346
|
grid-template-columns: 240px minmax(0,1fr);
|
|
2324
2347
|
}
|
|
2325
2348
|
}
|
|
2349
|
+
.lg\:grid-cols-\[minmax\(0\,1\.5fr\)_320px\] {
|
|
2350
|
+
@media (width >= 64rem) {
|
|
2351
|
+
grid-template-columns: minmax(0,1.5fr) 320px;
|
|
2352
|
+
}
|
|
2353
|
+
}
|
|
2354
|
+
.lg\:border-t-0 {
|
|
2355
|
+
@media (width >= 64rem) {
|
|
2356
|
+
border-top-style: var(--tw-border-style);
|
|
2357
|
+
border-top-width: 0px;
|
|
2358
|
+
}
|
|
2359
|
+
}
|
|
2360
|
+
.lg\:border-l {
|
|
2361
|
+
@media (width >= 64rem) {
|
|
2362
|
+
border-left-style: var(--tw-border-style);
|
|
2363
|
+
border-left-width: 1px;
|
|
2364
|
+
}
|
|
2365
|
+
}
|
|
2326
2366
|
.lg\:p-5 {
|
|
2327
2367
|
@media (width >= 64rem) {
|
|
2328
2368
|
padding: calc(var(--spacing) * 5);
|