Skip to content

Commit 8a344b0

Browse files
committed
fix: navbar on mobile
1 parent 80b5e8b commit 8a344b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Navbar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,14 +164,14 @@ export const Navbar = () => {
164164
<div
165165
className={cn(
166166
// base
167-
'flex flex-row gap-2 justify-between p-2 pb-4 px-8',
167+
'flex flex-row gap-2 justify-between p-2 pb-4 px-2',
168168
// tablet
169169
'md:px-0 md:flex-col md:gap-2 md:h-full md:space-y-8 md:justify-normal',
170170
// desktop
171171
'xl:space-y-0',
172172
)}
173173
>
174-
<div className="flex flex-row items-center gap-2 p-3">
174+
<div className="flex-row items-center gap-2 p-3 hidden md:flex">
175175
{handle && <Avatar handle={handle} avatar={profile?.avatar} hover={false} />}
176176
</div>
177177
<HomeLink />

0 commit comments

Comments
 (0)