update
This commit is contained in:
parent
cee837e1a6
commit
71fd633073
@ -531,6 +531,21 @@ const WeddingGuestList = () => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="page-wrapper">
|
<div className="page-wrapper">
|
||||||
|
<style>
|
||||||
|
{`
|
||||||
|
.wedding-guest-search-input input {
|
||||||
|
color: #000000 !important;
|
||||||
|
background-color: #ffffff !important;
|
||||||
|
}
|
||||||
|
.wedding-guest-search-input .ant-input {
|
||||||
|
color: #000000 !important;
|
||||||
|
background-color: #ffffff !important;
|
||||||
|
}
|
||||||
|
.wedding-guest-search-input .ant-input::placeholder {
|
||||||
|
color: #999999 !important;
|
||||||
|
}
|
||||||
|
`}
|
||||||
|
</style>
|
||||||
<div className="content">
|
<div className="content">
|
||||||
{/* Header */}
|
{/* Header */}
|
||||||
<div className="page-header">
|
<div className="page-header">
|
||||||
@ -626,7 +641,13 @@ const WeddingGuestList = () => {
|
|||||||
prefix={<Search size={16} />}
|
prefix={<Search size={16} />}
|
||||||
value={searchTerm}
|
value={searchTerm}
|
||||||
onChange={(e) => handleSearch(e.target.value)}
|
onChange={(e) => handleSearch(e.target.value)}
|
||||||
style={{ width: 300 }}
|
style={{
|
||||||
|
width: 300,
|
||||||
|
color: '#000000 !important',
|
||||||
|
backgroundColor: '#ffffff',
|
||||||
|
border: '1px solid #d9d9d9'
|
||||||
|
}}
|
||||||
|
className="wedding-guest-search-input"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user