fix styling
This commit is contained in:
@ -121,15 +121,17 @@ export function Hero({ signupCount }: HeroProps) {
|
|||||||
onSubmit={handleSubmit}
|
onSubmit={handleSubmit}
|
||||||
className="flex gap-3 w-full max-w-lg flex-col sm:flex-row"
|
className="flex gap-3 w-full max-w-lg flex-col sm:flex-row"
|
||||||
>
|
>
|
||||||
<Input
|
<div className="relative w-full">
|
||||||
type="email"
|
<Input
|
||||||
placeholder="Enter your email"
|
type="email"
|
||||||
className="h-11 text-base flex-1"
|
placeholder="Enter your email"
|
||||||
value={email}
|
className="h-11 text-base flex-1"
|
||||||
onChange={(e) => setEmail(e.target.value)}
|
value={email}
|
||||||
disabled={isSubmitting}
|
onChange={(e) => setEmail(e.target.value)}
|
||||||
required
|
disabled={isSubmitting}
|
||||||
/>
|
required
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<Button
|
<Button
|
||||||
type="submit"
|
type="submit"
|
||||||
size="lg"
|
size="lg"
|
||||||
|
Reference in New Issue
Block a user