We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1ace04 commit 6524105Copy full SHA for 6524105
src/app/(public)/_components/header.tsx
@@ -26,13 +26,13 @@ export async function Header() {
26
27
<div className="flex gap-2 lg:ml-40">
28
<form action={session ? signOutAction : signInAction}>
29
- <button className="text-white border-white btn btn-ghost border-1">
+ <button className="text-white border-white btn btn-ghost border-1 text-nowrap">
30
{session && session.user ? 'Sign Out' : 'Sign In'}
31
</button>
32
</form>
33
<Link
34
href="/contributors"
35
- className="btn btn-square btn-ghost umami--click--contributors-button"
+ className="btn btn-square btn-ghost umami--click--contributors-button hidden md:block"
36
>
37
<BsPeopleFill size="1.5rem" color="white" title="Contributors" />
38
</Link>
0 commit comments