@prisma/studio-core 0.0.0-dev.202505070910 → 0.0.0-dev.202505070928

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.css CHANGED
@@ -714,6 +714,9 @@ video {
714
714
  .ps-h-24 {
715
715
  height: 6rem;
716
716
  }
717
+ .ps-h-3 {
718
+ height: 0.75rem;
719
+ }
717
720
  .ps-h-3\.5 {
718
721
  height: 0.875rem;
719
722
  }
@@ -922,6 +925,15 @@ video {
922
925
  .ps-animate-indeterminate-bar {
923
926
  animation: ps-indeterminate 1.5s infinite ease-in-out;
924
927
  }
928
+ @keyframes ps-pulse {
929
+
930
+ 50% {
931
+ opacity: .5;
932
+ }
933
+ }
934
+ .ps-animate-pulse {
935
+ animation: ps-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
936
+ }
925
937
  .ps-cursor-col-resize {
926
938
  cursor: col-resize;
927
939
  }
@@ -1138,6 +1150,9 @@ video {
1138
1150
  .ps-bg-primary {
1139
1151
  background-color: hsl(var(--primary));
1140
1152
  }
1153
+ .ps-bg-primary\/10 {
1154
+ background-color: hsl(var(--primary) / 0.1);
1155
+ }
1141
1156
  .ps-bg-purple-600 {
1142
1157
  --tw-bg-opacity: 1;
1143
1158
  background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));