style: corrige espaçamento entre labels e inputs no perfil (debt)
This commit is contained in:
parent
c6765024bb
commit
42e52fca7b
1 changed files with 12 additions and 12 deletions
|
|
@ -223,7 +223,7 @@ export default function ProfilePage() {
|
|||
|
||||
<form onSubmit={handleSubmit} className="space-y-4">
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
||||
<div>
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="name">Full name</Label>
|
||||
<Input
|
||||
id="name"
|
||||
|
|
@ -231,7 +231,7 @@ export default function ProfilePage() {
|
|||
onChange={(e) => handleInputChange("fullName", e.target.value)}
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="email">Email</Label>
|
||||
<Input
|
||||
id="email"
|
||||
|
|
@ -242,7 +242,7 @@ export default function ProfilePage() {
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="phone">Phone</Label>
|
||||
<Input
|
||||
id="phone"
|
||||
|
|
@ -251,7 +251,7 @@ export default function ProfilePage() {
|
|||
/>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="bio">Bio</Label>
|
||||
<RichTextEditor
|
||||
value={formData.bio}
|
||||
|
|
@ -276,7 +276,7 @@ export default function ProfilePage() {
|
|||
</CardHeader>
|
||||
<CardContent>
|
||||
<form onSubmit={handlePasswordSubmit} className="space-y-4">
|
||||
<div>
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="currentPassword">Current password</Label>
|
||||
<Input
|
||||
id="currentPassword"
|
||||
|
|
@ -287,7 +287,7 @@ export default function ProfilePage() {
|
|||
</div>
|
||||
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
||||
<div>
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="newPassword">New password</Label>
|
||||
<Input
|
||||
id="newPassword"
|
||||
|
|
@ -296,7 +296,7 @@ export default function ProfilePage() {
|
|||
onChange={(e) => handlePasswordChange("newPassword", e.target.value)}
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="confirmPassword">Confirm new password</Label>
|
||||
<Input
|
||||
id="confirmPassword"
|
||||
|
|
@ -328,7 +328,7 @@ export default function ProfilePage() {
|
|||
<CardContent>
|
||||
<form onSubmit={handleCompanySubmit} className="space-y-4">
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
||||
<div>
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="companyName">Company Name</Label>
|
||||
<Input
|
||||
id="companyName"
|
||||
|
|
@ -336,7 +336,7 @@ export default function ProfilePage() {
|
|||
onChange={(e) => handleCompanyChange("name", e.target.value)}
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="companyEmail">Company Email</Label>
|
||||
<Input
|
||||
id="companyEmail"
|
||||
|
|
@ -348,7 +348,7 @@ export default function ProfilePage() {
|
|||
</div>
|
||||
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
||||
<div>
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="companyPhone">Phone</Label>
|
||||
<Input
|
||||
id="companyPhone"
|
||||
|
|
@ -356,7 +356,7 @@ export default function ProfilePage() {
|
|||
onChange={(e) => handleCompanyChange("phone", e.target.value)}
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="companyWebsite">Website</Label>
|
||||
<Input
|
||||
id="companyWebsite"
|
||||
|
|
@ -367,7 +367,7 @@ export default function ProfilePage() {
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="companyDescription">Description</Label>
|
||||
<Textarea
|
||||
id="companyDescription"
|
||||
|
|
|
|||
Loading…
Reference in a new issue