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

Fix ILLA logo button on hacktoberfest page. #268

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/hacktoberfest/nav/navMobile.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ export const NavMobile = ({
<div className={style.mobileNavContainer}>
<div className={style.navTop}>
<Link href={'/'}>
<span className="w-[42px] h-[20px] flex items-center">
<a className="w-[42px] h-[20px] flex items-center">
<IllaLogoWhiteIcon />
</span>
</a>
</Link>
<div className={style.buttonList}>
{leftButtonGroup.map((content) => (
Expand Down
4 changes: 2 additions & 2 deletions src/components/hacktoberfest/nav/navPc.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export const NavPC = ({ tabsList, leftButtonGroup }) => {
<div className={style.navContainer}>
<div className={style.navLeft}>
<Link href={'/'}>
<span className="w-[51px] h-[24px] flex items-center">
<a className="w-[51px] h-[24px] flex items-center">
<IllaLogoWhiteIcon />
</span>
</a>
</Link>
<div className={style.tabsList}>
{tabsList.map(({ title, href = '' }) => (
Expand Down