[web] auth: fix auth screen UI issues (#1395)
This commit is contained in:
parent
47f4c6edb8
commit
5fd6f5b8a8
|
|
@ -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(
|
||||
|
|
|
|||
|
|
@ -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 && (
|
||||
|
|
|
|||
Loading…
Reference in New Issue