fix: use correct colors for download progress bar (#7390)
This commit is contained in:
@@ -209,9 +209,9 @@ export const LocalInferenceSettings = () => {
|
|||||||
</div>
|
</div>
|
||||||
{progress.status === 'downloading' && (
|
{progress.status === 'downloading' && (
|
||||||
<div className="space-y-1">
|
<div className="space-y-1">
|
||||||
<div className="w-full bg-background-subtle rounded-full h-2">
|
<div className="w-full bg-gray-700 rounded-full h-2">
|
||||||
<div
|
<div
|
||||||
className="bg-accent-primary h-2 rounded-full transition-all duration-300"
|
className="bg-blue-500 h-2 rounded-full transition-all duration-300"
|
||||||
style={{ width: `${progress.progress_percent}%` }}
|
style={{ width: `${progress.progress_percent}%` }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user