Skip to content

Commit

Permalink
fix: Fixed Responsiveness in Register tab (#463)
Browse files Browse the repository at this point in the history
* added refresh button placeholder

* added alt tag spinner

* fixed some minor bugs all mentioned in #450

* fixed responsiveness in Register tab
  • Loading branch information
omthakare16 authored Oct 8, 2022
1 parent 43b4f09 commit db94bdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/accounts/Register.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const Register = () => {
bordered
type="email"
color="primary"
className=" max-w-xs"
className=" flex min-w-[10px] "
{...register("email", {
required: true,
maxLength: 45,
Expand All @@ -67,7 +67,7 @@ const Register = () => {
bordered
color="primary"
type="password"
className=" max-w-xs"
className=" flex min-w-[10px]"
{...register("password", { required: true })}
/>
)}
Expand Down

0 comments on commit db94bdc

Please sign in to comment.