Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
Revert "DEVPROD-4721: Change logo to Valentine's Day theme (#2261)"
Browse files Browse the repository at this point in the history
This reverts commit a4a866a.
  • Loading branch information
khelif96 committed Feb 15, 2024
1 parent 06fe697 commit 931185d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
11 changes: 7 additions & 4 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 ValentinesDayTree from "components/Icon/icons/ValentinesDayTree.svg";
import ChristmasTree from "components/Icon/icons/ChristmasTree.svg";
import { CURRENT_PROJECT } from "constants/cookies";
import { wikiUrl } from "constants/externalResources";
import { getCommitsRoute, getUserPatchesRoute, routes } from "constants/routes";
Expand Down Expand Up @@ -61,7 +61,7 @@ export const Navbar: React.FC = () => {
to={routes.myPatches}
onClick={() => sendEvent({ name: "Click Logo Link" })}
>
<SpruceIcon src={ValentinesDayTree} alt="Evergreen Logo" />
<ChristmasTreeIcon src={ChristmasTree} alt="Evergreen Logo" />
</LogoLink>
<PrimaryLink
data-cy="project-health-link"
Expand Down Expand Up @@ -174,6 +174,9 @@ const SecondaryLink = styled.a`
${secondaryStyle}
`;

const SpruceIcon = styled.img`
width: 50px;
const ChristmasTreeIcon = styled.img`
height: 46px;
width: 46px;
position: relative;
bottom: 4px;
`;
1 change: 0 additions & 1 deletion src/components/Icon/icons/ValentinesDayTree.svg

This file was deleted.

0 comments on commit 931185d

Please sign in to comment.