feat(ui) - metric filter button hover color

This commit is contained in:
Shekar Siri 2022-02-09 14:58:46 +01:00
parent 32c9b8d223
commit 37417eaba1
2 changed files with 5 additions and 1 deletions

View file

@ -3,6 +3,10 @@
padding: 0 10px;
&:hover {
background-color: $gray-light;
color: white;
& svg {
fill: white;
}
}
}

View file

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