@prisma/studio-core 0.0.0-dev.202505062102 → 0.0.0-dev.202505062135
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 +23 -23
- package/dist/ui/index.css +12 -0
- package/dist/ui/index.js +6 -6
- package/package.json +1 -1
package/dist/ui/index.css
CHANGED
|
@@ -909,6 +909,15 @@ video {
|
|
|
909
909
|
.ps-animate-indeterminate-bar {
|
|
910
910
|
animation: ps-indeterminate 1.5s infinite ease-in-out;
|
|
911
911
|
}
|
|
912
|
+
@keyframes ps-pulse {
|
|
913
|
+
|
|
914
|
+
50% {
|
|
915
|
+
opacity: .5;
|
|
916
|
+
}
|
|
917
|
+
}
|
|
918
|
+
.ps-animate-pulse {
|
|
919
|
+
animation: ps-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
920
|
+
}
|
|
912
921
|
.ps-cursor-col-resize {
|
|
913
922
|
cursor: col-resize;
|
|
914
923
|
}
|
|
@@ -1119,6 +1128,9 @@ video {
|
|
|
1119
1128
|
.ps-bg-primary {
|
|
1120
1129
|
background-color: hsl(var(--primary));
|
|
1121
1130
|
}
|
|
1131
|
+
.ps-bg-primary\/10 {
|
|
1132
|
+
background-color: hsl(var(--primary) / 0.1);
|
|
1133
|
+
}
|
|
1122
1134
|
.ps-bg-purple-600 {
|
|
1123
1135
|
--tw-bg-opacity: 1;
|
|
1124
1136
|
background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
|