Skip to content

Commit

Permalink
Adds hovers to buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
ASproson committed Aug 16, 2024
1 parent c32ea47 commit 29ee8f7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/PlayerMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ export const PlayerMenu = () => {
return (
<div className="flex flex-col items-start flex-wrap font-bold text-lg p-4 h-full">
{BUTTONS.map(({ title }) => (
<button key={title}>{title}</button>
<button key={title} className="text-slate-400 hover:text-slate-100 transition ease-in-out">
{title}
</button>
))}
</div>
);
Expand Down

0 comments on commit 29ee8f7

Please sign in to comment.