mirror of
https://github.com/arkorty/DownLink.git
synced 2026-03-17 16:51:45 +00:00
Darken the background of input boxes
This commit is contained in:
@@ -107,7 +107,7 @@ const DownloadForm = () => {
|
|||||||
id="url"
|
id="url"
|
||||||
value={url}
|
value={url}
|
||||||
onChange={(e) => setUrl(e.target.value)}
|
onChange={(e) => setUrl(e.target.value)}
|
||||||
className="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm"
|
className="mt-1 block w-full px-3 py-2 border border-gray-300 bg-zinc-800 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm text-gray-300"
|
||||||
placeholder="Enter video URL"
|
placeholder="Enter video URL"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -122,7 +122,7 @@ const DownloadForm = () => {
|
|||||||
id="quality"
|
id="quality"
|
||||||
value={quality}
|
value={quality}
|
||||||
onChange={(e) => setQuality(e.target.value)}
|
onChange={(e) => setQuality(e.target.value)}
|
||||||
className="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm"
|
className="mt-1 block w-full px-3 py-2 border border-gray-300 bg-zinc-800 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm text-gray-300"
|
||||||
>
|
>
|
||||||
<option value="360p">Standard</option>
|
<option value="360p">Standard</option>
|
||||||
<option value="480p">High</option>
|
<option value="480p">High</option>
|
||||||
|
|||||||
Reference in New Issue
Block a user