feat(ui) - metric filter button hover color
This commit is contained in:
parent
32c9b8d223
commit
37417eaba1
2 changed files with 5 additions and 1 deletions
|
|
@ -3,6 +3,10 @@
|
|||
padding: 0 10px;
|
||||
&:hover {
|
||||
background-color: $gray-light;
|
||||
color: white;
|
||||
& svg {
|
||||
fill: white;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ const FilterItem = props => {
|
|||
<div className="bg-white rounded-full p-1 px-3 mr-2">
|
||||
<div className="flex items-center">
|
||||
<span className="mr-2 color-gray-darkest">{f.text || f.value}</span>
|
||||
<Icon className="cursor-pointer" size="18" name="close" onClick={() => props.removeFilter(f)} />
|
||||
<Icon className="cursor-pointer" size="12" name="close" onClick={() => props.removeFilter(f)} />
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue