Skip to content

Commit

Permalink
nits
Browse files Browse the repository at this point in the history
  • Loading branch information
shahbaz17 committed Oct 25, 2024
1 parent 5f32e87 commit 67bdad2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 8 additions & 3 deletions mpc-core-kit-web/mpc-core-kit-bitcoin/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@
}

.danger {
background-color: #dc3545;
background-color: #df0b20;
}

.danger:hover {
Expand Down Expand Up @@ -288,6 +288,11 @@
}

.segwit-color {
background-color: #f31f69;
color: white;
background-color: #1cb9d1;
color: black;
}

.taproot-color {
background-color: #a01ae7;
color: white;
}
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ export const BitcoinComponent: React.FC<BitcoinComponentProps> = ({ coreKitInsta
<button onClick={() => signAndSendTransaction("Segwit")} className="card segwit-color">
Sign Segwit Transaction
</button>
<button className="card taproot-color disabledDiv">Sign Taproot Transaction</button>
</div>

<div className="flex-container">
Expand All @@ -258,6 +259,7 @@ export const BitcoinComponent: React.FC<BitcoinComponentProps> = ({ coreKitInsta
<button onClick={() => signAndSendTransaction("Segwit", true)} className="card segwit-color">
Send Segwit Transaction
</button>
<button className="card taproot-color disabledDiv">Send Taproot Transaction</button>
</div>

<div className="warning-box">
Expand Down

0 comments on commit 67bdad2

Please sign in to comment.