Skip to content

Commit 197b84a

Browse files
committed
lockfile in gitignore and signIn button got margin in navbar
1 parent c751292 commit 197b84a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
/node_modules
55
/.pnp
66
.pnp.js
7+
package-lock.json
78

89
# testing
910
/coverage

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ 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 ms-4">
3030
{session && session.user ? 'Sign Out' : 'Sign In'}
3131
</button>
3232
</form>

0 commit comments

Comments
 (0)