Skip to content

Commit 0afcaef

Browse files
authored
Navbar Icon Color Correction (#2150)
* color correction * color correction
1 parent 8248ac9 commit 0afcaef

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

components/NavbarComponents.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ export const Avatar = () => {
6464
<>
6565
{isOrg ? (
6666
<Image
67-
src="/profile-org-icon.svg"
67+
src="/profile-org-white.svg"
6868
alt={t("profileMenu")}
6969
width="35"
7070
height="35"
7171
/>
7272
) : (
7373
<Image
74-
src="/profile-individual-icon.svg"
74+
src="/profile-individual-white.svg"
7575
alt={t("profileMenu")}
7676
width="35"
7777
height="35"

components/ProfilePage/StyledUserIcons.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ export const BaseProfileIcon = ({
2121
let iconSrc
2222
switch (role) {
2323
case "organization": {
24-
iconSrc = "/profile-org-icon.svg"
24+
iconSrc = "/profile-org-blue.svg"
2525
break
2626
}
2727
default:
28-
iconSrc = "/profile-individual-icon.svg"
28+
iconSrc = "/profile-individual-blue.svg"
2929
break
3030
}
3131
return (

components/search/testimony/TestimonyHit.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ const TestimonyResult = ({ hit }: { hit: Hit<Testimony> }) => {
177177
<AuthorRow>
178178
<Image
179179
src={
180-
isOrg ? "/profile-org-icon.svg" : "/profile-individual-icon.svg"
180+
isOrg ? "/profile-org-blue.svg" : "/profile-individual-blue.svg"
181181
}
182182
alt={useTranslation("auth").t("profileIcon")}
183183
height="28px"

0 commit comments

Comments
 (0)