Skip to content

Commit

Permalink
DEVPROD-5766 Replace Christmas tree with a cherry blossom themed logo (
Browse files Browse the repository at this point in the history
  • Loading branch information
khelif96 authored Mar 21, 2024
1 parent 33bc2da commit 3e7b983
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/components/Header/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Cookies from "js-cookie";
import { Link, useParams } from "react-router-dom";
import { useNavbarAnalytics } from "analytics";
import Icon from "components/Icon";
import ChristmasTree from "components/Icon/icons/ChristmasTree.svg";
import HybridTree from "components/Icon/icons/HybridTree.svg";
import { CURRENT_PROJECT } from "constants/cookies";
import { wikiUrl } from "constants/externalResources";
import { getCommitsRoute, getUserPatchesRoute, routes } from "constants/routes";
Expand Down Expand Up @@ -68,7 +68,10 @@ export const Navbar: React.FC = () => {
to={routes.myPatches}
onClick={() => sendEvent({ name: "Click Logo Link" })}
>
<ChristmasTreeIcon src={ChristmasTree} alt="Evergreen Logo" />
<HybridTreeIcon
src={HybridTree}
alt="Evergreen Logo with a cherry blossom twist"
/>
</LogoLink>
<PrimaryLink
data-cy="project-health-link"
Expand Down Expand Up @@ -181,9 +184,8 @@ const SecondaryLink = styled.a`
${secondaryStyle}
`;

const ChristmasTreeIcon = styled.img`
height: 46px;
width: 46px;
const HybridTreeIcon = styled.img`
height: 70px;
width: 70px;
position: relative;
bottom: 4px;
`;
1 change: 1 addition & 0 deletions src/components/Icon/icons/HybridTree.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3e7b983

Please sign in to comment.