better file previews

This commit is contained in:
2025-07-13 13:33:14 +02:00
parent 596d7ac35d
commit b0628fe0bd
9 changed files with 71 additions and 33 deletions

View File

@@ -216,14 +216,13 @@ async function submit() {
class="h-full w-full"
>
<div
class="flex h-full w-full flex-col items-stretch gap-1 text-left p-2"
class="flex h-full w-full flex-col items-stretch gap-2 text-left p-4"
>
<UploadListEntry
v-for="(file, i) in uploadStore.files"
:key="file.data.name"
:file="file"
:uploading="uploading"
class="flex flex-row items-center justify-between gap-4 rounded-lg border px-4 py-2"
@remove-file="() => removeFile(i)"
/>
</div>