Skip to content

Commit

Permalink
fix color for counselors icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Soarecos committed Nov 3, 2022
1 parent 2aa1ac2 commit 3b75c1a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Layout/NavIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export function NavIcon({ path }: Props) {
return currentlySelected ? (
<OtherHouses {...props} />
) : (
<OtherHousesOutlined {...props} />
<OtherHousesOutlined className="OtherHousesOutlinedIcon" {...props} />
);
case routePathNames.topics:
return currentlySelected ? (
Expand Down
1 change: 1 addition & 0 deletions src/styles/components/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
@import "listTables";
@import "colorSelector.less";
@import "modal.less";
@import "navIcon.less";
@import "form.less";
@import "rte.less";
@import "twoFactorAuth.less";
Expand Down
3 changes: 3 additions & 0 deletions src/styles/components/navIcon.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.OtherHousesOutlinedIcon {
opacity: .6
}

0 comments on commit 3b75c1a

Please sign in to comment.