Skip to content

Commit 6524105

Browse files
committed
hide contributers button from header in mobile devices
1 parent d1ace04 commit 6524105

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/(public)/_components/header.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ export async function Header() {
2626

2727
<div className="flex gap-2 lg:ml-40">
2828
<form action={session ? signOutAction : signInAction}>
29-
<button className="text-white border-white btn btn-ghost border-1">
29+
<button className="text-white border-white btn btn-ghost border-1 text-nowrap">
3030
{session && session.user ? 'Sign Out' : 'Sign In'}
3131
</button>
3232
</form>
3333
<Link
3434
href="/contributors"
35-
className="btn btn-square btn-ghost umami--click--contributors-button"
35+
className="btn btn-square btn-ghost umami--click--contributors-button hidden md:block"
3636
>
3737
<BsPeopleFill size="1.5rem" color="white" title="Contributors" />
3838
</Link>

0 commit comments

Comments
 (0)