fix: inherit bg for cancel button

This commit is contained in:
amhsirak
2025-11-05 22:01:34 +05:30
parent 5b5aa0d5ab
commit c235ac240e

View File

@@ -121,7 +121,7 @@ export const RobotConfigPage: React.FC<RobotConfigPageProps> = ({
display: 'flex',
flexDirection: 'column',
minHeight: 0,
mt: 2,
mt: 1.8,
mb: 5,
}}>
{children}
@@ -160,9 +160,7 @@ export const RobotConfigPage: React.FC<RobotConfigPageProps> = ({
onClick={handleBack}
disabled={isLoading}
sx={{
color: '#ff00c3 !important',
borderColor: '#ff00c3 !important',
backgroundColor: 'white !important',
backgroundColor: 'inherit !important',
}} >
{cancelButtonText || t("buttons.cancel")}
</Button>