Hotfix for success page email input and button (#1854)

* hotfix

* cleanup

Co-authored-by: Peer Richelsen <peeroke@gmail.com>
pull/1835/head^2
Syed Ali Shahbaz 2022-02-16 17:03:16 +05:30 committed by GitHub
parent 69dd6fe7d4
commit 228dea1308
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -270,10 +270,10 @@ export default function Success(props: inferSSRProps<typeof getServerSideProps>)
name="email"
id="email"
defaultValue={router.query.email}
className="focus:border-brand dark:bg-brand dark:text-brandcontrast block w-full border-gray-300 text-gray-600 shadow-sm focus:ring-black dark:border-gray-900 sm:text-sm"
className="focus:border-brand mt-0 block w-full rounded-sm border-gray-300 shadow-sm focus:ring-black dark:border-gray-900 dark:bg-black dark:text-white sm:text-sm"
placeholder="rick.astley@cal.com"
/>
<Button type="submit" className="min-w-max" color="primary">
<Button size="lg" type="submit" className="min-w-max" color="primary">
{t("try_for_free")}
</Button>
</form>