Skip to content

Commit

Permalink
fix: navbar desktop showing up on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
virtual-designer authored Feb 7, 2024
1 parent 76b0313 commit d8fd0ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Navbar/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function Navbar() {
<span className="desktop">SudoBot Extensions</span>
</a>

<ul className={`${styles.ul} desktop`}>
<ul className={`${styles.ul} hidden md:inline-block`}>
{pages.map((link) => {
const LinkComponent = link.url.startsWith("/") ? Link : "a";
const externalLink = /^http(s?):\/\//gi.test(link.url);
Expand Down

0 comments on commit d8fd0ce

Please sign in to comment.