mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 12:25:22 +00:00
fix login ui nits
This commit is contained in:
parent
274b635f1c
commit
66c8c74a11
2 changed files with 4 additions and 2 deletions
|
|
@ -42,7 +42,9 @@ export default async function Onboard({ params, searchParams }: OnboardProps) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col items-center py-12 px-4 sm:px-12 min-h-screen bg-backgroundSecondary relative">
|
<div className="flex flex-col items-center py-12 px-4 sm:px-12 min-h-screen bg-backgroundSecondary relative">
|
||||||
|
{step !== OnboardingSteps.Complete && (
|
||||||
<LogoutEscapeHatch className="absolute top-0 right-0 p-4 sm:p-12" />
|
<LogoutEscapeHatch className="absolute top-0 right-0 p-4 sm:p-12" />
|
||||||
|
)}
|
||||||
{step === OnboardingSteps.ConnectCodeHost && (
|
{step === OnboardingSteps.ConnectCodeHost && (
|
||||||
<>
|
<>
|
||||||
<OnboardHeader
|
<OnboardHeader
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ function VerifyPageContent() {
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="min-h-screen flex flex-col items-center justify-center p-4 bg-gradient-to-b from-background to-muted/30">
|
<div className="flex flex-col items-center p-4 sm:p-12 min-h-screen w-full bg-backgroundSecondary">
|
||||||
<div className="w-full max-w-md">
|
<div className="w-full max-w-md">
|
||||||
<div className="flex justify-center mb-6">
|
<div className="flex justify-center mb-6">
|
||||||
<SourcebotLogo className="h-16" size="large" />
|
<SourcebotLogo className="h-16" size="large" />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue