feat(upload): bulk drag-and-drop upload on home page (#66) #74

Merged
marcel merged 13 commits from feature/66-bulk-upload-drop-zone into main 2026-03-26 12:00:09 +01:00
Showing only changes of commit 50e3f948c7 - Show all commits

View File

@@ -298,8 +298,8 @@ $effect(() => {
role="button"
tabindex="0"
class="mb-4 flex cursor-pointer items-center justify-center gap-3 border border-dashed px-6 py-3 text-sm transition-colors duration-150 {isDragging
? 'border-accent bg-accent/5 text-accent'
: 'border-line-2 text-ink-3 hover:border-accent hover:text-accent'}"
? 'border-primary bg-accent-bg text-primary'
: 'border-ink/20 text-ink-3 hover:border-primary hover:text-primary'}"
ondragover={handleDragOver}
ondragleave={handleDragLeave}
ondrop={handleDrop}