feat: Implement a new Upload page for batch processing team owners, featuring a file dropzone and a new layout.

This commit is contained in:
2026-02-07 01:43:38 +08:00
parent 2fc0dcaba4
commit a74d3ac121
3 changed files with 5 additions and 5 deletions

View File

@@ -61,7 +61,7 @@ export default function FileDropzone({ onFileSelect, disabled = false, error }:
onDragOver={handleDragOver}
onDragLeave={handleDragLeave}
onDrop={handleDrop}
className={`relative border-2 border-dashed rounded-xl p-8 text-center transition-colors ${
className={`relative border-2 border-dashed rounded-xl p-5 sm:p-8 text-center transition-colors ${
disabled
? 'border-slate-200 dark:border-slate-700 bg-slate-50 dark:bg-slate-800/50 cursor-not-allowed'
: isDragging