Skip to content

Commit

Permalink
style: add hover state to button
Browse files Browse the repository at this point in the history
  • Loading branch information
remvze committed Apr 26, 2024
1 parent 9ad49d0 commit ebb35de
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/components/sounds/sounds.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
background-color: var(--color-neutral-50);
border: 1px solid var(--color-neutral-200);
border-radius: 50px;
transition: 0.2s;

&:hover,
&:focus-visible {
background-color: var(--color-neutral-100);
}

&:focus-visible {
outline: 2px solid var(--color-neutral-400);
Expand Down

0 comments on commit ebb35de

Please sign in to comment.