Skip to content

Commit

Permalink
adjusted search result highlighting color
Browse files Browse the repository at this point in the history
  • Loading branch information
ginny100 committed Dec 26, 2024
1 parent 3d24c1a commit 1965bd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/popup/src/Popup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ const Popup = () => {
onClick={() => handleAddApp(app.name)}
onKeyDown={(e) => e.key === 'Enter' && handleAddApp(app.name)}
tabIndex={0}
className={`flex w-full items-center gap-3 rounded-lg px-4 py-3 hover:bg-gray-100 ${
isLight ? 'hover:bg-gray-100' : 'hover:bg-[#1B2A49]'
className={`flex w-full items-center gap-3 rounded-lg px-4 py-3 ${
isLight ? 'hover:bg-[#BCCCDC]' : 'hover:bg-[#9DB2BF]'
}`}
>
<span className="text-xl">{app.icon}</span>
Expand Down

0 comments on commit 1965bd2

Please sign in to comment.