Skip to content

Commit

Permalink
fix: custom links overflow on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
hamster1963 committed Dec 20, 2024
1 parent eebda37 commit b7ed4b8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/(main)/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,16 @@ function Header() {
</p>
</section>
<section className="flex items-center gap-2">
<Links />
<div className="hidden sm:block">
<Links />
</div>
<LanguageSwitcher />
<ModeToggle />
</section>
</section>
<div className="w-full flex justify-end sm:hidden mt-1">
<Links />
</div>
<Overview />
</div>
)
Expand Down

0 comments on commit b7ed4b8

Please sign in to comment.