diff --git a/src/components/robot/RobotSettings.tsx b/src/components/robot/RobotSettings.tsx index 76633b9b..ed66cd60 100644 --- a/src/components/robot/RobotSettings.tsx +++ b/src/components/robot/RobotSettings.tsx @@ -159,3 +159,15 @@ export const RobotSettingsModal = ({ isOpen, handleStart, handleClose, initialSe ); }; + +export const modalStyle = { + top: "40%", + left: "50%", + transform: "translate(-50%, -50%)", + width: "50%", + backgroundColor: "background.paper", + p: 4, + height: "fit-content", + display: "block", + padding: "20px", + };