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> <DialogActions>
{!privateKey ? ( {!privateKey ? (
<> <>
<Button onClick={handleShowPrivateKey} color="error"> <Button style={{...styles.buttonRed, ...styles.button}} onClick={handleShowPrivateKey}>Yes</Button>
Yes <Button style={{...styles.buttonBlue, ...styles.button}} onClick={hideShowPKDialog}>No</Button>
</Button>
<Button onClick={hideShowPKDialog}>No</Button>
</> </>
) : ( ) : (
<Button onClick={hideShowPKDialog}>Ok</Button> <Button onClick={hideShowPKDialog}>Ok</Button>