Autofill input in dark mode using Tailwind
P粉745412116
2023-08-28 08:34:43
<p>After using dark mode to fill in remembered passwords, I encountered an issue with the input colors being ugly.
In light mode it's yellow, which is not bad. </p>
<p>I found some answers here using <code>webkit-autofill</code> but I am having trouble using tailwind <code>dark: </code> prop and <code>global.scss</ I'm having trouble implementing it in sass in the code> file. </p>
The solution is to add this to the global.scss file:
Then add
className={`${styles.input} dark:inputDarkModeOverride`}
in the input attribute.