@prisma/studio-core 0.0.0-dev.202505082121 → 0.0.0-dev.202505082130
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/ui/index.cjs +27 -35
- package/dist/ui/index.css +12 -3
- package/dist/ui/index.js +6 -14
- package/package.json +1 -1
package/dist/ui/index.css
CHANGED
|
@@ -601,6 +601,9 @@ video {
|
|
|
601
601
|
.ps-sticky {
|
|
602
602
|
position: sticky;
|
|
603
603
|
}
|
|
604
|
+
.-ps-inset-0 {
|
|
605
|
+
inset: -0px;
|
|
606
|
+
}
|
|
604
607
|
.ps-inset-0 {
|
|
605
608
|
inset: 0px;
|
|
606
609
|
}
|
|
@@ -795,6 +798,9 @@ video {
|
|
|
795
798
|
.ps-w-2 {
|
|
796
799
|
width: 0.5rem;
|
|
797
800
|
}
|
|
801
|
+
.ps-w-2\/3 {
|
|
802
|
+
width: 66.666667%;
|
|
803
|
+
}
|
|
798
804
|
.ps-w-20 {
|
|
799
805
|
width: 5rem;
|
|
800
806
|
}
|
|
@@ -813,6 +819,9 @@ video {
|
|
|
813
819
|
.ps-w-4 {
|
|
814
820
|
width: 1rem;
|
|
815
821
|
}
|
|
822
|
+
.ps-w-4\/5 {
|
|
823
|
+
width: 80%;
|
|
824
|
+
}
|
|
816
825
|
.ps-w-48 {
|
|
817
826
|
width: 12rem;
|
|
818
827
|
}
|
|
@@ -1230,6 +1239,9 @@ video {
|
|
|
1230
1239
|
.ps-p-6 {
|
|
1231
1240
|
padding: 1.5rem;
|
|
1232
1241
|
}
|
|
1242
|
+
.ps-p-\[var\(--studio-cell-spacing\)\] {
|
|
1243
|
+
padding: var(--studio-cell-spacing);
|
|
1244
|
+
}
|
|
1233
1245
|
.ps-p-px {
|
|
1234
1246
|
padding: 1px;
|
|
1235
1247
|
}
|
|
@@ -1388,9 +1400,6 @@ video {
|
|
|
1388
1400
|
.ps-text-muted-foreground {
|
|
1389
1401
|
color: hsl(var(--muted-foreground));
|
|
1390
1402
|
}
|
|
1391
|
-
.ps-text-muted-foreground\/60 {
|
|
1392
|
-
color: hsl(var(--muted-foreground) / 0.6);
|
|
1393
|
-
}
|
|
1394
1403
|
.ps-text-muted-foreground\/70 {
|
|
1395
1404
|
color: hsl(var(--muted-foreground) / 0.7);
|
|
1396
1405
|
}
|