style: make username and display name inputs in profile settings same width

This commit is contained in:
trafficlunar 2025-05-02 21:31:02 +01:00
parent f633648fee
commit 419fcb4788

View file

@ -121,10 +121,10 @@ export default function ProfileSettings() {
</div>
<div className="flex justify-end gap-1">
<div className="relative">
<div className="relative w-full max-w-64">
<input
type="text"
className="pill input w-full max-w-64 indent-4"
className="pill input w-full indent-4"
placeholder="Type here..."
value={username}
onChange={(e) => setUsername(e.target.value)}