fix: Improve version dropdown text contrast
Added text-gray-900 and font-medium classes to select element for better readability. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -1321,10 +1321,10 @@ export default function ScraperTest({ onJobsChange, onSelectReviews }: ScraperTe
|
|||||||
<select
|
<select
|
||||||
value={scraperVersion}
|
value={scraperVersion}
|
||||||
onChange={(e) => setScraperVersion(e.target.value)}
|
onChange={(e) => setScraperVersion(e.target.value)}
|
||||||
className="w-full px-3 py-2 border-2 border-gray-200 rounded-lg focus:border-green-500 focus:ring-2 focus:ring-green-200 transition-all bg-white"
|
className="w-full px-3 py-2 border-2 border-gray-200 rounded-lg focus:border-green-500 focus:ring-2 focus:ring-green-200 transition-all bg-white text-gray-900 font-medium"
|
||||||
>
|
>
|
||||||
{AVAILABLE_VERSIONS.map((v) => (
|
{AVAILABLE_VERSIONS.map((v) => (
|
||||||
<option key={v.value} value={v.value}>
|
<option key={v.value} value={v.value} className="text-gray-900">
|
||||||
{v.label} - {v.description}
|
{v.label} - {v.description}
|
||||||
</option>
|
</option>
|
||||||
))}
|
))}
|
||||||
|
|||||||
Reference in New Issue
Block a user