Download file in chunks

This commit is contained in:
IgorVolochay
2026-01-06 20:53:28 +03:00
parent 91451c07b8
commit 8c7fda2069
3 changed files with 94 additions and 4 deletions
+30
View File
@@ -333,3 +333,33 @@ button:disabled {
transform: translateY(-1px);
box-shadow: 0 8px 16px -4px rgba(99, 102, 241, 0.4);
}
/* Download progress */
.download-progress {
margin-top: 24px;
text-align: center;
}
.progress-bar-container {
width: 100%;
height: 8px;
background: #e5e7eb;
border-radius: 4px;
overflow: hidden;
margin-bottom: 12px;
}
.progress-bar {
height: 100%;
background: linear-gradient(90deg, #6366f1, #8b5cf6);
border-radius: 4px;
transition: width 0.3s ease;
width: 0%;
}
.progress-text {
font-size: 14px;
color: #6b7280;
margin: 0;
font-weight: 500;
}