[web] auth: fix auth screen UI issues (#1395)

This commit is contained in:
Nitesh Seram 2025-04-21 14:22:06 +05:30 committed by GitHub
parent 47f4c6edb8
commit 5fd6f5b8a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 6 deletions

View File

@ -73,7 +73,9 @@ export default function AuthDialog({ isShown, onClose, next }: Props) {
'pointer-events-none',
'flex min-h-full items-center',
)}>
<DialogContent contentClassName="relative !p-0 lg:h-[670px] lg:max-h-[670px]">
<DialogContent
className={themeBackgroundDarkColor}
contentClassName="relative !p-0 lg:h-[670px] lg:max-h-[670px]">
{onClose && (
<DialogClose asChild={true}>
<Button
@ -111,10 +113,7 @@ export default function AuthDialog({ isShown, onClose, next }: Props) {
</div>
</div>
<ScrollArea
className={clsx(
'hidden flex-1 lg:block',
themeBackgroundDarkColor,
)}
className="hidden flex-1 lg:block"
viewportClass={clsx('h-[670px]', 'flex')}>
<div
className={clsx(

View File

@ -117,7 +117,7 @@ export default function SupabaseAuth({
className={clsx(
'flex flex-col gap-y-1.5',
variant === 'full'
? 'items-center lg:items-start'
? 'items-center xl:items-start'
: 'items-start',
)}>
{!isAuthScreenWithSocial && !onlyThirdPartyProviders && (