style: reduce padding on sign-in message to match composer

Change from px-3 py-2 to px-2 py-1 to match the horizontal and vertical
padding of the logged-in message composer (px-2 py-1), ensuring
consistent height between logged-in and logged-out states.
This commit is contained in:
Claude
2026-01-19 15:32:33 +00:00
parent d22d521b23
commit 006b090247

View File

@@ -1103,7 +1103,7 @@ export function ChatViewer({
{uploadDialog}
</div>
) : (
<div className="border-t px-3 py-2 text-center text-sm text-muted-foreground">
<div className="border-t px-2 py-1 text-center text-sm text-muted-foreground">
Sign in to send messages
</div>
)}