Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
update download button
Browse files
frontend/src/components/BenchmarkCreateForm.jsx
CHANGED
@@ -523,6 +523,13 @@ function BenchmarkCreateForm({ onStartGeneration }) {
|
|
523 |
onClick={() => handleDownloadDocument(modalDocument)}
|
524 |
disabled={isDownloading}
|
525 |
aria-label="download"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
526 |
>
|
527 |
{isDownloading ? (
|
528 |
<CircularProgress size={20} />
|
|
|
523 |
onClick={() => handleDownloadDocument(modalDocument)}
|
524 |
disabled={isDownloading}
|
525 |
aria-label="download"
|
526 |
+
sx={{
|
527 |
+
color: "text.secondary",
|
528 |
+
opacity: 0.4,
|
529 |
+
"&:hover": {
|
530 |
+
opacity: 0.8,
|
531 |
+
},
|
532 |
+
}}
|
533 |
>
|
534 |
{isDownloading ? (
|
535 |
<CircularProgress size={20} />
|