feat: improve description
This commit is contained in:
parent
de63677650
commit
9918ae8b37
2 changed files with 4 additions and 4 deletions
|
|
@ -172,10 +172,10 @@ export default function EditForm({ mii, likes }: Props) {
|
||||||
Description
|
Description
|
||||||
</label>
|
</label>
|
||||||
<textarea
|
<textarea
|
||||||
rows={3}
|
rows={5}
|
||||||
maxLength={256}
|
maxLength={256}
|
||||||
placeholder="(optional) Type a description..."
|
placeholder="(optional) Type a description..."
|
||||||
className="pill input rounded-xl! resize-none col-span-2"
|
className="pill input rounded-xl! resize-none col-span-2 text-sm"
|
||||||
value={description ?? ""}
|
value={description ?? ""}
|
||||||
onChange={(e) => setDescription(e.target.value)}
|
onChange={(e) => setDescription(e.target.value)}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
|
|
@ -190,10 +190,10 @@ export default function SubmitForm() {
|
||||||
Description
|
Description
|
||||||
</label>
|
</label>
|
||||||
<textarea
|
<textarea
|
||||||
rows={3}
|
rows={5}
|
||||||
maxLength={256}
|
maxLength={256}
|
||||||
placeholder="(optional) Type a description..."
|
placeholder="(optional) Type a description..."
|
||||||
className="pill input rounded-xl! resize-none col-span-2"
|
className="pill input rounded-xl! resize-none col-span-2 text-sm"
|
||||||
value={description}
|
value={description}
|
||||||
onChange={(e) => setDescription(e.target.value)}
|
onChange={(e) => setDescription(e.target.value)}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue