fix(web): fix dark/light mode text color for Country input in CreateCertificateModal

This commit is contained in:
dyzulk
2026-01-09 16:46:21 +07:00
parent 4cea10c680
commit bfe561cb56

View File

@@ -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() })}
/>