@charlesgomes/leafcode-shared-lib-react 1.0.1 → 1.0.2
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.css +6 -4
- package/dist/styles/table.css +7 -5
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -442,9 +442,6 @@ th:has(.p-column-filter-menu-button.p-column-filter-menu-button-active) .p-icon.
|
|
|
442
442
|
font-size: 13px;
|
|
443
443
|
}
|
|
444
444
|
@media (max-width: 767px) {
|
|
445
|
-
.custom-input {
|
|
446
|
-
width: 100%;
|
|
447
|
-
}
|
|
448
445
|
.p-paginator-left-content {
|
|
449
446
|
min-width: 100vw;
|
|
450
447
|
margin-bottom: 8px;
|
|
@@ -463,9 +460,14 @@ th:has(.p-column-filter-menu-button.p-column-filter-menu-button-active) .p-icon.
|
|
|
463
460
|
position: relative;
|
|
464
461
|
top: 4px !important;
|
|
465
462
|
}
|
|
463
|
+
}
|
|
464
|
+
@media (max-width: 567px) {
|
|
466
465
|
.disablePagination,
|
|
467
466
|
.paginatorLeft {
|
|
468
|
-
display:
|
|
467
|
+
display: grid;
|
|
469
468
|
gap: 1rem;
|
|
470
469
|
}
|
|
470
|
+
.custom-select {
|
|
471
|
+
min-width: 100%;
|
|
472
|
+
}
|
|
471
473
|
}
|
package/dist/styles/table.css
CHANGED
|
@@ -523,10 +523,6 @@ th:has(.p-column-filter-menu-button.p-column-filter-menu-button-active)
|
|
|
523
523
|
}
|
|
524
524
|
|
|
525
525
|
@media (max-width: 767px) {
|
|
526
|
-
.custom-input {
|
|
527
|
-
width: 100%;
|
|
528
|
-
}
|
|
529
|
-
|
|
530
526
|
.p-paginator-left-content {
|
|
531
527
|
min-width: 100vw;
|
|
532
528
|
margin-bottom: 8px;
|
|
@@ -548,10 +544,16 @@ th:has(.p-column-filter-menu-button.p-column-filter-menu-button-active)
|
|
|
548
544
|
position: relative;
|
|
549
545
|
top: 4px !important;
|
|
550
546
|
}
|
|
547
|
+
}
|
|
551
548
|
|
|
549
|
+
@media (max-width: 567px) {
|
|
552
550
|
.disablePagination,
|
|
553
551
|
.paginatorLeft {
|
|
554
|
-
display:
|
|
552
|
+
display: grid;
|
|
555
553
|
gap: 1rem;
|
|
556
554
|
}
|
|
555
|
+
|
|
556
|
+
.custom-select {
|
|
557
|
+
min-width: 100%;
|
|
558
|
+
}
|
|
557
559
|
}
|