From e59476dea9da9512e6c3008d5b6f1565b821ce5e Mon Sep 17 00:00:00 2001 From: Dmytro Stanchiev Date: Wed, 8 Apr 2026 01:51:22 -0400 Subject: [PATCH] fix: remove fixed height and icon margins from sign-in buttons --- src/components/sign-in.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/sign-in.tsx b/src/components/sign-in.tsx index 22c08a0..7edd081 100644 --- a/src/components/sign-in.tsx +++ b/src/components/sign-in.tsx @@ -30,9 +30,9 @@ export default function SignIn() { onClick={handleSignOut} variant="ghost" size="sm" - className="h-8 text-xs text-muted-foreground" + className="text-xs text-muted-foreground" > - + Sign Out ); @@ -43,9 +43,9 @@ export default function SignIn() { onClick={() => router.push("/auth/signin")} variant="ghost" size="sm" - className="h-8 text-xs" + className="text-xs" > - + Sign In );