Skip to content

Commit

Permalink
Fix hover med media query
Browse files Browse the repository at this point in the history
  • Loading branch information
chce committed Nov 20, 2023
1 parent 73ef172 commit 1c66d93
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,15 @@ a {
cursor: pointer;
font-size: 1.1rem;
}
a:hover, a:focus {
@media (hover: hover) {
a:hover, .link-like-button:hover {
color: #99ff99;
}
}
a:focus {
color: #99ff99;
}
.link-like-button:hover, .link-like-button:focus {
.link-like-button:focus {
color: #99ff99;
}
h1, h2 {
Expand Down

0 comments on commit 1c66d93

Please sign in to comment.