feat(theme): ✨ Add chat theme settings
This commit is contained in:
@ -34,7 +34,7 @@ export const DateForm = ({
|
||||
<p className="font-semibold mr-2">{labels?.from ?? 'From:'}</p>
|
||||
)}
|
||||
<input
|
||||
className="focus:outline-none bg-transparent flex-1 w-full comp-input"
|
||||
className="focus:outline-none bg-transparent flex-1 w-full text-input"
|
||||
type={hasTime ? 'datetime-local' : 'date'}
|
||||
onChange={(e) =>
|
||||
setInputValues({ ...inputValues, from: e.target.value })
|
||||
@ -48,7 +48,7 @@ export const DateForm = ({
|
||||
<p className="font-semibold">{labels?.to ?? 'To:'}</p>
|
||||
)}
|
||||
<input
|
||||
className="focus:outline-none bg-transparent flex-1 w-full comp-input ml-2"
|
||||
className="focus:outline-none bg-transparent flex-1 w-full text-input ml-2"
|
||||
type={hasTime ? 'datetime-local' : 'date'}
|
||||
onChange={(e) =>
|
||||
setInputValues({ ...inputValues, to: e.target.value })
|
||||
|
Reference in New Issue
Block a user