fix: remove custom styles
This commit is contained in:
@@ -28,7 +28,7 @@ const fetchWorkflow = (id: string, callback: (response: WorkflowFile) => void) =
|
|||||||
throw new Error("No workflow found");
|
throw new Error("No workflow found");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
).catch((error) => { console.log(`Failed to fetch workflow:`,error.message) })
|
).catch((error) => { console.log(`Failed to fetch workflow:`, error.message) })
|
||||||
};
|
};
|
||||||
|
|
||||||
interface RightSidePanelProps {
|
interface RightSidePanelProps {
|
||||||
@@ -1006,6 +1006,14 @@ export const RightSidePanel: React.FC<RightSidePanelProps> = ({ onFinishCapture
|
|||||||
notify('info', 'Please select a different pagination element');
|
notify('info', 'Please select a different pagination element');
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
sx={{
|
||||||
|
color: '#ff00c3 !important',
|
||||||
|
borderColor: '#ff00c3 !important',
|
||||||
|
'&:hover': {
|
||||||
|
borderColor: '#ff00c3 !important',
|
||||||
|
backgroundColor: '#f4f6f4 !important',
|
||||||
|
}
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
Choose Different Element
|
Choose Different Element
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
Reference in New Issue
Block a user