Skip to content

Commit

Permalink
fix: links position on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
hamster1963 committed Dec 20, 2024
1 parent 6078c9f commit 5138a05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function Header() {
return (
<div className="mx-auto w-full max-w-5xl">
<section className="flex items-center justify-between">
<section onClick={() => navigate("/")} className="cursor-pointer flex items-center text-base font-medium">
<section onClick={() => navigate("/")} className="cursor-pointer flex items-center sm:text-base text-sm font-medium">
<div className="mr-1 flex flex-row items-center justify-start">
<img
width={40}
Expand All @@ -70,7 +70,7 @@ function Header() {
<ModeToggle />
</section>
</section>
<div className="w-full justify-items-end sm:hidden mt-1">
<div className="w-full flex justify-end sm:hidden mt-1">
<Links />
</div>
<Overview />
Expand Down

0 comments on commit 5138a05

Please sign in to comment.