Show Private Key confirmation dialog button styling

This commit is contained in:
Monkey 2024-08-09 15:04:55 -04:00 committed by Cody Bender
parent b2a043068a
commit c818bc0b9d

View File

@ -79,10 +79,8 @@ const ShowPKDialog = () => {
<DialogActions>
{!privateKey ? (
<>
<Button onClick={handleShowPrivateKey} color="error">
Yes
</Button>
<Button onClick={hideShowPKDialog}>No</Button>
<Button style={{...styles.buttonRed, ...styles.button}} onClick={handleShowPrivateKey}>Yes</Button>
<Button style={{...styles.buttonBlue, ...styles.button}} onClick={hideShowPKDialog}>No</Button>
</>
) : (
<Button onClick={hideShowPKDialog}>Ok</Button>