fix(client): color styling
This commit is contained in:
parent
22bb36bc1a
commit
90a58cc3cf
@ -23,15 +23,19 @@ export const FilterGroup = connect((props) => {
|
||||
return (
|
||||
<FilterLogicContext.Provider value={logic}>
|
||||
<div
|
||||
style={bordered ? {
|
||||
position: 'relative',
|
||||
border: '1px dashed #dedede',
|
||||
padding: 14,
|
||||
marginBottom: 8,
|
||||
} : {
|
||||
position: 'relative',
|
||||
marginBottom: 8,
|
||||
}}
|
||||
style={
|
||||
bordered
|
||||
? {
|
||||
position: 'relative',
|
||||
border: '1px dashed #dedede',
|
||||
padding: 14,
|
||||
marginBottom: 8,
|
||||
}
|
||||
: {
|
||||
position: 'relative',
|
||||
marginBottom: 8,
|
||||
}
|
||||
}
|
||||
>
|
||||
{remove && (
|
||||
<a>
|
||||
@ -40,6 +44,7 @@ export const FilterGroup = connect((props) => {
|
||||
position: 'absolute',
|
||||
right: 10,
|
||||
top: 10,
|
||||
color: '#bfbfbf',
|
||||
}}
|
||||
onClick={() => remove()}
|
||||
/>
|
||||
|
@ -49,7 +49,7 @@ export const FilterItem = observer((props: any) => {
|
||||
},
|
||||
})}
|
||||
<a>
|
||||
<CloseCircleOutlined onClick={() => remove()} />
|
||||
<CloseCircleOutlined onClick={() => remove()} style={{ color: '#bfbfbf' }} />
|
||||
</a>
|
||||
</Space>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user