Build [v1.14.24]

This commit is contained in:
2026-04-25 12:04:02 +03:00
parent 33c1555d8c
commit 3257a2cf48
50 changed files with 837 additions and 845 deletions

View File

@@ -35,12 +35,12 @@ export function SearchLoadingModal({ isOpen, onTimeout, maxSeconds = 30 }: Searc
return (
<div className="fixed inset-0 bg-black/50 flex items-center justify-center z-50">
<div className="bg-white rounded-lg p-6 max-w-md shadow-xl">
<div className="bg-white p-6 max-w-md shadow-xl">
<h2 className="text-xl font-normal mb-4">Searching for specs...</h2>
<p className="text-sm text-slate-600 mb-4">This may take up to {maxSeconds} seconds</p>
<p className="text-sm text-outline-variant mb-4">This may take up to {maxSeconds} seconds</p>
<div className="mb-4">
<div className="relative h-2 bg-slate-200 rounded-full overflow-hidden">
<div className="relative h-2 bg-foreground overflow-hidden">
<div
className="h-full bg-primary transition-all duration-1000"
style={{ width: `${(seconds / maxSeconds) * 100}%` }}