File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -564,40 +564,14 @@ onMounted(() => {
564564
565565 <div
566566 v-if="processedFiles[index]"
567- class="absolute inset-0 bg-gray-800 bg-opacity-80 rounded-lg flex flex-col items-center justify-center"
567+ class="absolute inset-0 bg-midnight bg-opacity-0 rounded-lg flex flex-col items-center justify-center"
568568 >
569569 <div v-if="processedFiles[index].success" class="text-success mb-2">
570- <svg
571- xmlns="http://www.w3.org/2000/svg"
572- class="h-10 w-10"
573- fill="none"
574- viewBox="0 0 24 24"
575- stroke="currentColor"
576- >
577- <path
578- stroke-linecap="round"
579- stroke-linejoin="round"
580- stroke-width="2"
581- d="M5 13l4 4L19 7"
582- />
583- </svg>
570+ <img src="../assets/success.svg" class="h-10 w-10">
584571 <p class="text-sm mt-1">Successfully processed</p>
585572 </div>
586573 <div v-else class="text-error mb-2">
587- <svg
588- xmlns="http://www.w3.org/2000/svg"
589- class="h-10 w-10"
590- fill="none"
591- viewBox="0 0 24 24"
592- stroke="currentColor"
593- >
594- <path
595- stroke-linecap="round"
596- stroke-linejoin="round"
597- stroke-width="2"
598- d="M6 18L18 6M6 6l12 12"
599- />
600- </svg>
574+ <img src="../assets/error.svg" class="h-10 w-10">
601575 <p class="text-sm mt-1">{{ processedFiles[index].message }}</p>
602576 </div>
603577 </div>
You can’t perform that action at this time.
0 commit comments