Skip to content

Commit

Permalink
Use border color that matches active button
Browse files Browse the repository at this point in the history
  • Loading branch information
lkocman committed Aug 21, 2024
1 parent 51b84d7 commit 632a652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/product/ProductSelectionPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ function ProductSelectionPage() {
onClick={() => handleCardClick(product)}
style={{
cursor: 'pointer', // Change the cursor to indicate clickable
border: nextProduct === product ? '2px solid #0066cc' : 'none', // Optional: highlight selected card
border: nextProduct === product ? '2px solid #51c38d' : 'none', // highlight selected card
}}
>
<CardBody>
Expand Down

0 comments on commit 632a652

Please sign in to comment.