feat: improve description

This commit is contained in:
trafficlunar 2025-10-31 15:29:12 +00:00
parent de63677650
commit 9918ae8b37
2 changed files with 4 additions and 4 deletions

View file

@ -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)}
/> />

View file

@ -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)}
/> />