mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
fix(pages/Login): email 输入框深色模式 (#1429)
This commit is contained in:
parent
3de55936a5
commit
7d20e6c5de
1 changed files with 2 additions and 2 deletions
|
|
@ -22,11 +22,11 @@ const EmailInput = ({
|
|||
}) => {
|
||||
return (
|
||||
<div className='w-full'>
|
||||
<div className='mb-1 text-sm font-medium text-gray-700'>Email</div>
|
||||
<div className='mb-1 text-sm font-medium text-gray-700 dark:text-gray-300'>Email</div>
|
||||
<input
|
||||
value={email}
|
||||
onChange={e => setEmail(e.target.value)}
|
||||
className='w-full rounded-md border border-gray-300 px-2 py-2'
|
||||
className='w-full rounded-md border border-gray-300 px-2 py-2 dark:border-gray-600 dark:bg-gray-700 dark:text-white'
|
||||
type='email'
|
||||
/>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue