fix(client): color styling

This commit is contained in:
chenos 2022-05-03 21:31:57 +08:00
parent 22bb36bc1a
commit 90a58cc3cf
2 changed files with 15 additions and 10 deletions

View File

@ -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()}
/>

View File

@ -49,7 +49,7 @@ export const FilterItem = observer((props: any) => {
},
})}
<a>
<CloseCircleOutlined onClick={() => remove()} />
<CloseCircleOutlined onClick={() => remove()} style={{ color: '#bfbfbf' }} />
</a>
</Space>
</div>