mirror of
https://github.com/dyzulk/trustlab.git
synced 2026-01-26 05:25:36 +07:00
fix(web): fix dark/light mode text color for Country input in CreateCertificateModal
This commit is contained in:
@@ -208,7 +208,7 @@ export default function CreateCertificateModal({
|
||||
<input
|
||||
type="text"
|
||||
maxLength={2}
|
||||
className="w-full px-4 py-2 rounded-lg border border-gray-200 dark:border-gray-800 bg-white dark:bg-gray-900 focus:ring-2 focus:ring-brand-500 outline-none transition"
|
||||
className="w-full px-4 py-2 rounded-lg border border-gray-200 dark:border-gray-800 bg-white dark:bg-gray-900 text-gray-800 dark:text-white/90 placeholder:text-gray-400 dark:placeholder:text-white/30 focus:ring-2 focus:ring-brand-500 outline-none transition"
|
||||
value={formData.country}
|
||||
onChange={(e) => setFormData({ ...formData, country: e.target.value.toUpperCase() })}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user