1
0
Fork 0
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:
Jason Rasmussen 2023-08-10 14:46:41 -04:00 committed by GitHub
parent e9b0840f01
commit 6bd7c6c06d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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">