Skip to content

Commit

Permalink
fix: links height (#360)
Browse files Browse the repository at this point in the history
  • Loading branch information
DiogoSoaress authored May 31, 2024
1 parent 1811170 commit c8a7f6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/common/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const Header = () => {
<li key={category} onMouseEnter={onEnter} onFocus={onEnter} onMouseLeave={onLeave} onBlur={onLeave}>
{href ? (
<NextLink href={href} onClick={closeMobileNavigation}>
<span className={css.navLink} dangerouslySetInnerHTML={{ __html: category }} />
<div className={css.navLink} dangerouslySetInnerHTML={{ __html: category }} />
</NextLink>
) : isSmallScreen ? (
// Mobile button
Expand Down

0 comments on commit c8a7f6a

Please sign in to comment.