Show Private Key confirmation dialog button styling

This commit is contained in:
Monkey 2024-08-09 15:04:55 -04:00
parent af9b10341c
commit 2f19af25a7

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>