Skip to content

Commit

Permalink
fix: Hover color for event list
Browse files Browse the repository at this point in the history
  • Loading branch information
ViMaSter committed Feb 8, 2024
1 parent c42a298 commit 3dab7c5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/components/GDQSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,19 @@ mwc-list
{
margin: initial !important;
}
mwc-list-item:hover
{
background-color: hsl(0deg 0% 87%);
}
.dark-mode
{
mwc-list-item
{
color: hsl(0deg 0% 87%);
}
mwc-list-item:hover
{
background-color: rgba(255, 255, 255, 0.12);
}
}
</style>

0 comments on commit 3dab7c5

Please sign in to comment.