Skip to content

Commit

Permalink
bug fix (buttonSelect)
Browse files Browse the repository at this point in the history
  • Loading branch information
wcodersv committed Feb 13, 2024
1 parent 76dc7ac commit 58408e2
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/components/Button/ButtonSelect.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,20 @@

&:hover {
background-color: var(--clr-primary);
color: var(--clr-white);;
color: var(--clr-white);
}

&_selected {
background-color: var(--clr-primary);
color: var(--clr-white);
}
}

@media screen and (max-width: 800px) {
.container {
&:hover {
background-color: transparent;
color: var(--clr-primary);
}
}
}

0 comments on commit 58408e2

Please sign in to comment.