mirror of
https://github.com/immich-app/immich.git
synced 2025-01-16 16:56:46 +01:00
feat(web): multi-line description edit input (#3640)
* feat(web): multi-line description edit input * fix: remove focus border
This commit is contained in:
parent
e9b0840f01
commit
6bd7c6c06d
1 changed files with 8 additions and 1 deletions
|
@ -31,7 +31,14 @@
|
|||
<div class="m-4 flex flex-col gap-2">
|
||||
<label class="immich-form-label" for="email">Description</label>
|
||||
<!-- svelte-ignore a11y-autofocus -->
|
||||
<input class="immich-form-input" id="name" name="name" type="text" bind:value={description} autofocus />
|
||||
<textarea
|
||||
class="immich-form-input focus:outline-none"
|
||||
id="name"
|
||||
name="name"
|
||||
rows="5"
|
||||
bind:value={description}
|
||||
autofocus
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div class="mt-8 flex w-full gap-4 px-4">
|
||||
|
|
Loading…
Reference in a new issue