Skip to content

Commit

Permalink
fix: username input on mobile
Browse files Browse the repository at this point in the history
this commit should fix the username input field not working on mobile due to div overlapping
  • Loading branch information
RupaakSrinivas committed Jul 15, 2024
1 parent da1bc88 commit 3c1ee29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/GetUserName.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const GetUsername: React.FC = () => {
value={userName}
placeholder="Username"
onChange={(e) => setuserName(e.target.value)}
className="box-border text-lg font-poppins rounded-md text-black p-3 pl-4 border-2 border-blue bg-dark w-full mb-3 text-left"
className="box-border z-[4] text-lg font-poppins rounded-md text-black p-3 pl-4 border-2 border-blue bg-dark w-full mb-3 text-left"
/>
<input
type="text"
Expand Down

0 comments on commit 3c1ee29

Please sign in to comment.