myoperator-mcp 0.2.146 → 0.2.148
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/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2220,7 +2220,7 @@ const DialogOverlay = React.forwardRef(({ className, ...props }: React.Component
|
|
|
2220
2220
|
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
|
|
2221
2221
|
|
|
2222
2222
|
const dialogContentVariants = cva(
|
|
2223
|
-
"fixed left-[50%] top-[50%] z-[9999]
|
|
2223
|
+
"fixed left-[50%] top-[50%] z-[9999] flex flex-col translate-x-[-50%] translate-y-[-50%] gap-4 border border-solid border-border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] rounded-lg",
|
|
2224
2224
|
{
|
|
2225
2225
|
variants: {
|
|
2226
2226
|
size: {
|
package/package.json
CHANGED