react-admin-crud-manager 1.0.25 → 1.0.26
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.js +35 -33
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +1352 -1300
- package/dist/index.es.js.map +1 -1
- package/dist/tailwind.css +15 -0
- package/package.json +1 -1
package/dist/tailwind.css
CHANGED
|
@@ -536,6 +536,9 @@ body{
|
|
|
536
536
|
.right-0{
|
|
537
537
|
right: 0px;
|
|
538
538
|
}
|
|
539
|
+
.right-1{
|
|
540
|
+
right: 0.25rem;
|
|
541
|
+
}
|
|
539
542
|
.right-1\/2{
|
|
540
543
|
right: 50%;
|
|
541
544
|
}
|
|
@@ -551,6 +554,9 @@ body{
|
|
|
551
554
|
.top-0{
|
|
552
555
|
top: 0px;
|
|
553
556
|
}
|
|
557
|
+
.top-1{
|
|
558
|
+
top: 0.25rem;
|
|
559
|
+
}
|
|
554
560
|
.top-1\/2{
|
|
555
561
|
top: 50%;
|
|
556
562
|
}
|
|
@@ -575,6 +581,9 @@ body{
|
|
|
575
581
|
.col-span-12{
|
|
576
582
|
grid-column: span 12 / span 12;
|
|
577
583
|
}
|
|
584
|
+
.mb-0{
|
|
585
|
+
margin-bottom: 0px;
|
|
586
|
+
}
|
|
578
587
|
.mb-1{
|
|
579
588
|
margin-bottom: 0.25rem;
|
|
580
589
|
}
|
|
@@ -629,6 +638,9 @@ body{
|
|
|
629
638
|
.h-16{
|
|
630
639
|
height: 4rem;
|
|
631
640
|
}
|
|
641
|
+
.h-2{
|
|
642
|
+
height: 0.5rem;
|
|
643
|
+
}
|
|
632
644
|
.h-20{
|
|
633
645
|
height: 5rem;
|
|
634
646
|
}
|
|
@@ -680,6 +692,9 @@ body{
|
|
|
680
692
|
.w-16{
|
|
681
693
|
width: 4rem;
|
|
682
694
|
}
|
|
695
|
+
.w-2{
|
|
696
|
+
width: 0.5rem;
|
|
697
|
+
}
|
|
683
698
|
.w-20{
|
|
684
699
|
width: 5rem;
|
|
685
700
|
}
|