Skip to content

Commit 88c1186

Browse files
committed
refactor(header): remove size prop from buttons for consistent styling
1 parent 0dc2c47 commit 88c1186

File tree

1 file changed

+1
-2
lines changed
  • apps/web/app/(unauthenticated)/components

1 file changed

+1
-2
lines changed

apps/web/app/(unauthenticated)/components/header.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,12 @@ export const Header = () => {
4040
<nav className="flex flex-1 flex-row items-center justify-end">
4141
<div className="flex flex-initial flex-row items-center justify-end gap-2">
4242
<Button
43-
size="sm"
4443
asChild
4544
className="bg-transparent text-muted-foreground hover:bg-transparent hover:text-muted-foreground"
4645
>
4746
<Link href="/contact">Contact</Link>
4847
</Button>
49-
<Button variant="outline" size="sm" asChild>
48+
<Button variant="outline" asChild>
5049
{pathname.includes('login') ? (
5150
<Link href="/signup">Sign Up</Link>
5251
) : (

0 commit comments

Comments
 (0)