Skip to content

Commit

Permalink
fix(Header): adjust border-radius
Browse files Browse the repository at this point in the history
  • Loading branch information
BrickheadJohnny committed Nov 25, 2024
1 parent 9f0f9bd commit 99d59ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import { Card } from "./ui/Card";
export const Header = () => (
<header className="flex h-14 items-center justify-between gap-4 p-2">
{/* TODO: NavMenu component */}
<Card className="h-11 w-24 rounded-xl" />
<Card className="h-11 w-24" />

<Card className="rounded-xl">
<Card>
<AuthBoundary fallback={<SignInButton variant="ghost" />}>
<SignOutButton />
</AuthBoundary>
Expand Down

0 comments on commit 99d59ea

Please sign in to comment.