style: make username and display name inputs in profile settings same width
This commit is contained in:
parent
f633648fee
commit
419fcb4788
1 changed files with 2 additions and 2 deletions
|
|
@ -121,10 +121,10 @@ export default function ProfileSettings() {
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="flex justify-end gap-1">
|
<div className="flex justify-end gap-1">
|
||||||
<div className="relative">
|
<div className="relative w-full max-w-64">
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
className="pill input w-full max-w-64 indent-4"
|
className="pill input w-full indent-4"
|
||||||
placeholder="Type here..."
|
placeholder="Type here..."
|
||||||
value={username}
|
value={username}
|
||||||
onChange={(e) => setUsername(e.target.value)}
|
onChange={(e) => setUsername(e.target.value)}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue