Skip to content

Commit

Permalink
Merge pull request #4 from maneesht/mtewani/fix-responsive-email-login
Browse files Browse the repository at this point in the history
Fixed issue where input is cut off on mobile
  • Loading branch information
TheIronDev authored Oct 19, 2022
2 parents 7acc9d3 + f6b5a6c commit 413fd4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hosting/src/components/auth/LoginHandler.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export default function LoginHandler() {
const EmailForm = (
<form onSubmit={onSignInClick} className="flex items-end gap-4">
{/* Email field + label */}
<div className="flex-1">
<div className="flex-1 min-w-[150px]">
<label htmlFor="email" className="form-label">
Email
</label>
Expand Down
2 changes: 1 addition & 1 deletion hosting/src/pages/sign-in/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function SignIn() {
</p>

{/* Auth module */}
<div className="w-[490px]">
<div className="max-w-[490px]">
<LoginHandler />
<div id="recaptcha-container-id" />
</div>
Expand Down

0 comments on commit 413fd4a

Please sign in to comment.