@prisma/studio-core 0.0.0-dev.202505101225 → 0.0.0-dev.202505101249
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 +35 -27
- package/dist/ui/index.css +9 -13
- package/dist/ui/index.js +15 -7
- package/package.json +1 -1
package/dist/ui/index.css
CHANGED
|
@@ -987,6 +987,15 @@ video {
|
|
|
987
987
|
.ps-animate-pulse {
|
|
988
988
|
animation: ps-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
989
989
|
}
|
|
990
|
+
@keyframes ps-spin {
|
|
991
|
+
|
|
992
|
+
to {
|
|
993
|
+
transform: rotate(360deg);
|
|
994
|
+
}
|
|
995
|
+
}
|
|
996
|
+
.ps-animate-spin {
|
|
997
|
+
animation: ps-spin 1s linear infinite;
|
|
998
|
+
}
|
|
990
999
|
.ps-cursor-col-resize {
|
|
991
1000
|
cursor: col-resize;
|
|
992
1001
|
}
|
|
@@ -1161,10 +1170,6 @@ video {
|
|
|
1161
1170
|
.ps-border-input {
|
|
1162
1171
|
border-color: hsl(var(--input));
|
|
1163
1172
|
}
|
|
1164
|
-
.ps-border-neutral-200 {
|
|
1165
|
-
--tw-border-opacity: 1;
|
|
1166
|
-
border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
|
|
1167
|
-
}
|
|
1168
1173
|
.ps-border-primary {
|
|
1169
1174
|
border-color: hsl(var(--primary));
|
|
1170
1175
|
}
|
|
@@ -1337,9 +1342,6 @@ video {
|
|
|
1337
1342
|
.ps-pr-8 {
|
|
1338
1343
|
padding-right: 2rem;
|
|
1339
1344
|
}
|
|
1340
|
-
.ps-pr-\[var\(--studio-cell-spacing\)\] {
|
|
1341
|
-
padding-right: var(--studio-cell-spacing);
|
|
1342
|
-
}
|
|
1343
1345
|
.ps-pt-4 {
|
|
1344
1346
|
padding-top: 1rem;
|
|
1345
1347
|
}
|
|
@@ -1662,9 +1664,6 @@ body {
|
|
|
1662
1664
|
.placeholder\:ps-text-muted-foreground::placeholder {
|
|
1663
1665
|
color: hsl(var(--muted-foreground));
|
|
1664
1666
|
}
|
|
1665
|
-
.hover\:ps-border-primary:hover {
|
|
1666
|
-
border-color: hsl(var(--primary));
|
|
1667
|
-
}
|
|
1668
1667
|
.hover\:ps-border-table-border:hover {
|
|
1669
1668
|
border-color: hsl(var(--table-border));
|
|
1670
1669
|
}
|
|
@@ -1692,9 +1691,6 @@ body {
|
|
|
1692
1691
|
.hover\:ps-text-accent-foreground:hover {
|
|
1693
1692
|
color: hsl(var(--accent-foreground));
|
|
1694
1693
|
}
|
|
1695
|
-
.hover\:ps-text-card-foreground:hover {
|
|
1696
|
-
color: hsl(var(--card-foreground));
|
|
1697
|
-
}
|
|
1698
1694
|
.hover\:ps-text-foreground:hover {
|
|
1699
1695
|
color: hsl(var(--foreground));
|
|
1700
1696
|
}
|