@prisma/studio-core 0.0.0-dev.202505101238 → 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.css CHANGED
@@ -877,8 +877,8 @@ video {
877
877
  .ps-min-w-0 {
878
878
  min-width: 0px;
879
879
  }
880
- .ps-min-w-72 {
881
- min-width: 18rem;
880
+ .ps-min-w-\[200px\] {
881
+ min-width: 200px;
882
882
  }
883
883
  .ps-min-w-\[8rem\] {
884
884
  min-width: 8rem;
@@ -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
  }