Skip to content

Fix LoadingCard size on mobile in login page + match LoadingCard size to ConnectEmbed #5704

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions apps/dashboard/src/app/login/LoginPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,15 @@ export function LoginAndOnboardingPage(props: {
</header>
</div>

<main className="container z-10 flex grow flex-col items-center justify-center gap-6 py-12">
<ClientOnly ssr={<LoadingCard />}>
<main className="container z-10 flex grow flex-col justify-center gap-6 py-12">
<ClientOnly
ssr={
<div className="flex justify-center">
<LoadingCard />
</div>
}
className="flex justify-center"
>
<PageContent
redirectPath={props.redirectPath}
account={props.account}
Expand All @@ -94,7 +101,7 @@ export function LoginAndOnboardingPage(props: {
/>

<Aurora
color="hsl(var(--foreground)/9%)"
color="hsl(var(--foreground)/7%)"
pos={{ top: "55%", left: "50%" }}
size={{ width: "1400px", height: "1300px" }}
/>
Expand All @@ -104,7 +111,7 @@ export function LoginAndOnboardingPage(props: {

function LoadingCard() {
return (
<div className="flex min-h-[450px] w-full items-center justify-center rounded-xl border border-border bg-background shadow-lg lg:w-[500px]">
<div className="flex min-h-[522px] w-full items-center justify-center rounded-xl border border-border bg-background shadow-lg max-sm:max-w-[358px] lg:min-h-[568px] lg:w-[728px]">
<Spinner className="size-10" />
</div>
);
Expand Down
Loading