Skip to content

Commit

Permalink
fix active item text and bg colors
Browse files Browse the repository at this point in the history
  • Loading branch information
andreymikhadyuk committed Dec 18, 2023
1 parent 0f9831c commit 30d08fa
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,16 @@
border-radius: 0;

&:hover {
--bg-color: #{var(--hover-fill)};
--bg-color: #{var(--secondary-text)};
--item-text-color: #{$c-shades-white};
}
}
.projectsTreeItemTriggerActiveClassName {
--bg-color: #{var(--secondary-background)};
--bg-color: #{var(--primary-fill)};
--item-text-color: #{$c-shades-white};

&:hover {
--bg-color: #{var(--hover-fill)};
--bg-color: #{var(--primary-fill)};
}
}

Expand Down

0 comments on commit 30d08fa

Please sign in to comment.