Dialog button colors

This commit is contained in:
Robin Davies
2024-08-14 17:56:28 -04:00
parent 508b7d2808
commit 5bf2905c79
20 changed files with 116 additions and 68 deletions
+2 -2
View File
@@ -506,10 +506,10 @@ const WifiDirectConfigDialog = withStyles(styles, { withTheme: true })(
)}
<DialogActions>
<Button onClick={handleClose} color="primary" style={{ width: 120 }}>
<Button onClick={handleClose} variant="dialogSecondary" style={{ width: 120 }}>
Cancel
</Button>
<Button onClick={() => this.handleOk()} color="primary" style={{ width: 120 }} >
<Button onClick={() => this.handleOk()} variant="dialogPrimary" style={{ width: 120 }} >
OK
</Button>
</DialogActions>