Skip to content

Commit

Permalink
Merge pull request #192 from mackenziesalinas/Rename-top-button-Conne…
Browse files Browse the repository at this point in the history
…ct-to-Manager

Fixed Issue #183: Rename Top Button from Connect to Manager
  • Loading branch information
COChara authored Sep 16, 2023
2 parents c8dd451 + 33cdda1 commit 1f64264
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/components/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ const Navbar = (): ReactElement => {
<NavLinksImage open={false} src={Crown_Icon} alt="" />
</NavMenuLink>
<NavBtnLink href="#/manager" onClick={() => setTrainingLevel('')}>
Connect
<div className="text-white">Manager</div>
</NavBtnLink>
<button
className="hover:bg-[#333] rounded"
Expand Down Expand Up @@ -322,20 +322,19 @@ const NavBtn = styled.button`

const NavBtnLink = styled.a`
border-radius: 50px;
background: rgb(34 197 94);
white-space: nowrap;
padding: 10px 22px;
color: #222424;
font-size: 16px;
outline: none;
border: none;
border: 1px solid white;
cursor: pointer;
transition: all 0.2s ease-in-out;
text-decoration: none;
&:hover {
color: #ffff;
background: #32cd32;
background: #01a049;
transition: 0.3s ease out;
}
`;

0 comments on commit 1f64264

Please sign in to comment.