0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-27 15:52:39 +00:00

HeaderList now in nav > ul > li

This commit is contained in:
G.Ambatte
2025-01-06 23:20:52 +13:00
parent cf16566da8
commit 06005009e4
2 changed files with 23 additions and 19 deletions

View File

@@ -45,9 +45,11 @@ const HeaderNav = React.forwardRef(({}, pagesRef)=>{
};
return <div className='headerNav'>
{renderHeaderLinks()}
</div>;
return <nav className='headerNav'>
<ul>
{renderHeaderLinks()}
</ul>
</nav>;
}
);
@@ -61,11 +63,11 @@ const HeaderNavItem = ({ link, text, depth, className })=>{
return text.trim();
};
return <p>
return <li>
<a href={`#${link}`} target='_self' className={className}>
<span style={{ display: 'inline-block', width: `${depth * 0.5}em` }}></span>{trimString(text, depth)}
</a>
</p>;
</li>;
};
export default HeaderNav;

View File

@@ -1,6 +1,6 @@
.headerNav {
position: fixed;
top: 30px;
top: 32px;
left: 0px;
padding: 5px 10px;
background-color: #ccc;
@@ -17,19 +17,21 @@
.navIcon {
cursor: pointer;
}
a {
font-family: 'Open Sans';
font-size: 12px;
padding: 2px;
color: inherit;
text-decoration: none;
cursor: pointer;
&:hover {
text-decoration: underline;
li {
list-style-type: none;
a {
font-family: 'Open Sans';
font-size: 12px;
padding: 2px;
color: inherit;
text-decoration: none;
cursor: pointer;
&:hover {
text-decoration: underline;
}
&.pageLink {
font-weight: 900;
}
}
&.pageLink {
font-weight: 900;
}
}
}