Skip to content

Commit

Permalink
Fixes according to feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Efe committed Mar 27, 2024
1 parent f97bc5b commit cd2a672
Show file tree
Hide file tree
Showing 4 changed files with 172 additions and 168 deletions.
2 changes: 1 addition & 1 deletion apps/blog/components/dialog-login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function DialogLogin({ children }: { children: ReactNode }) {
}
}}>
<DialogTrigger asChild>{children}</DialogTrigger>
<DialogContent className="max-w-[380px] sm:max-w-[450px] p-0 sm:px-0 rounded-md" data-testid="login-dialog" onInteractOutside={(e) => e.preventDefault()}>
<DialogContent className="max-w-[380px] sm:max-w-[450px] p-0 sm:px-0 rounded-md mt-32 sm:mt-auto" data-testid="login-dialog" onInteractOutside={(e) => e.preventDefault()}>
<SignInForm ref={signInFormRef} preferredKeyTypes={['posting']} onComplete={onComplete} />
</DialogContent>
</Dialog>
Expand Down
2 changes: 1 addition & 1 deletion packages/smart-signer/components/auth/form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const SignInForm = forwardRef<SignInFormRef, SignInFormProps>(({ preferredKeyTyp
}


return <div className="flex max-h-[400px] h-min pb-4">
return <div className="flex max-h-[460px] h-min pb-4">

{
step === Steps.SAFE_STORAGE_LOGIN && (
Expand Down
Loading

0 comments on commit cd2a672

Please sign in to comment.