fix: cancel button dark theme UI

This commit is contained in:
Rohit
2025-08-04 23:22:33 +05:30
parent 150434ab66
commit ee002a7a7c

View File

@@ -144,18 +144,10 @@ export const RobotConfigPage: React.FC<RobotConfigPageProps> = ({
onClick={handleBack}
disabled={isLoading}
sx={{
color: '#ff00c3',
borderColor: '#ff00c3',
bgcolor: 'white',
'&:hover': {
borderColor: '#cc0099',
bgcolor: '#fff5fc',
},
textTransform: 'none',
fontWeight: 500,
px: 3
}}
>
color: '#ff00c3 !important',
borderColor: '#ff00c3 !important',
backgroundColor: 'whitesmoke !important',
}} >
{cancelButtonText}
</Button>
)}