fix: button and input heights (#1548)

This commit is contained in:
Aaryan Khandelwal 2023-07-18 15:00:06 +05:30 committed by GitHub
parent 9b423cea4b
commit 88fbe85087
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 20 additions and 15 deletions

View file

@ -121,7 +121,7 @@ const ResetPasswordPage: NextPage = () => {
}}
error={errors.password}
placeholder="Enter new password..."
className="border-custom-border-300"
className="border-custom-border-300 h-[46px]"
/>
</div>
<div className="space-y-1">
@ -135,10 +135,14 @@ const ResetPasswordPage: NextPage = () => {
}}
error={errors.confirmPassword}
placeholder="Confirm new password..."
className="border-custom-border-300"
className="border-custom-border-300 h-[46px]"
/>
</div>
<PrimaryButton type="submit" className="w-full text-center" loading={isSubmitting}>
<PrimaryButton
type="submit"
className="w-full text-center h-[46px]"
loading={isSubmitting}
>
{isSubmitting ? "Resetting..." : "Reset"}
</PrimaryButton>
</form>