Skip to content

Commit

Permalink
change button
Browse files Browse the repository at this point in the history
  • Loading branch information
chloehan committed Jul 16, 2024
1 parent f870a2a commit 74ac1db
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/pages/offer/OfferModal/OfferModal.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,9 @@
.proceed{
background-color: #0066FF;
}

.cancel{
background-color: #424242;
}
}
}
2 changes: 1 addition & 1 deletion src/pages/offer/OfferModal/OfferModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function OfferModal(){
*Once transferred, revenue from selling this NFT costume will be vested to the new owner.
</p>
<div className={styles.buttons}>
<button onClick={handleClose}>Cancel</button>
<button className={styles.cancel} onClick={handleClose}>Cancel</button>
<button className={styles.proceed} onClick={handleProceed}>Proceed</button>
</div>
</div>
Expand Down
4 changes: 4 additions & 0 deletions src/shared/Dashboard/OfferModal/OfferModal.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@
width:7.5rem;
}

.cancel{
background-color: #424242;
}

.proceed{
background-color: #0066FF;
}
Expand Down
2 changes: 1 addition & 1 deletion src/shared/Dashboard/OfferModal/OfferModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function OfferModal(){
*Once transferred, revenue from selling this NFT costume will be vested to the new owner.
</p>
<div className={styles.buttons}>
<button onClick={handleClose}>Cancel</button>
<button className={styles.cancel} onClick={handleClose}>Cancel</button>
<button className={styles.proceed} onClick={handleProceed}>Proceed</button>
</div>
</div>
Expand Down

0 comments on commit 74ac1db

Please sign in to comment.