Skip to content

Commit

Permalink
Fix button on mobile screens
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabau committed Oct 11, 2024
1 parent ba4e244 commit a555db1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gabau.github.io/src/components/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ const RightItems = () => {
const {theme} = useContext(ThemeContext);

return (<div className="flex flex-row space-x-6">
<Link to="https://www.linkedin.com/in/gabriel-au-chen-xi-9a764b21b/" className="flex xl:h-10 sm:h-8">
<Link to="https://www.linkedin.com/in/gabriel-au-chen-xi-9a764b21b/" className="flex h-8">
{theme === "light" && <FaLinkedin className="w-full h-full"/>}
{theme === "dark" && <FaLinkedinIn className="w-full h-full" />}
</Link>
<Link to="https://github.com/Gabau" className="flex xl:h-10 sm:h-8 ">
<Link to="https://github.com/Gabau" className="flex h-8">
{theme === "light" && <img src={GithubIcon} className="object-contain w-auto h-auto" />}
{theme === "dark" && <img src={LighGithubIcon} className="object-contain w-auto h-auto" />}
</Link>
Expand Down

0 comments on commit a555db1

Please sign in to comment.