Chore: change color of the download progress bar

This commit is contained in:
Arkaprabha Chakraborty
2024-08-10 20:46:33 +05:30
parent a4d40e6709
commit 98ade62a68

View File

@@ -143,9 +143,9 @@ const DownloadForm = () => {
...getBarStyle(),
}}
></div>
{isProcessing && progress === 0 && (
{isDownloading && progress === 0 && (
<div
className={`absolute top-0 left-0 w-full h-full bg-blue-500 rounded-full`}
className={`absolute top-0 left-0 w-full h-full bg-blue-400 rounded-full`}
style={getAnimationStyle()}
></div>
)}