Skip to content
This repository has been archived by the owner on May 25, 2023. It is now read-only.

Commit

Permalink
fix: dark mode dashboard hover (#1060)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtfoley committed Jun 27, 2021
1 parent 85a8d2b commit c800e76
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/styles/List.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ const Container = styled.ul`
body.dark & {
background-color: ${colors.darkestGrey};
color: ${colors.lightestGrey};
a, li:hover {
background-color: ${colors.darkGrey}
color: ${colors.lightestGrey};
}
li {
border-top: 1px solid ${colors.grey};
}
li:hover {
background-color: ${colors.darkGrey};
color: ${colors.lightestGrey};
}
}
`;

Expand Down

0 comments on commit c800e76

Please sign in to comment.