Skip to content

Commit

Permalink
Update App.js
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson authored Nov 24, 2023
1 parent 9a5c904 commit 12a9ff3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ function SearchPanel({
<>
<button>
<BsArrowLeftCircleFill onClick={() => setCurSeqHitIndex((x) => x==0? sequenceHits.length-1: x-1)}
className="mx-3 text-gray-600 hover:bg-black" />
className="mx-3 text-gray-600 hover:text-gray-800" />
</button>


Expand All @@ -142,7 +142,7 @@ function SearchPanel({

<button>
<BsArrowRightCircleFill onClick={() => setCurSeqHitIndex((x) => x==sequenceHits.length-1? 0: x+1)}
className="mx-3 text-gray-600 hover:bg-black" />
className="mx-3 text-gray-600 hover:text-gray-800" />
</button>
</>
)}
Expand Down

1 comment on commit 12a9ff3

@vercel
Copy link

@vercel vercel bot commented on 12a9ff3 Nov 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.