make remove button contrast against item hover bg

This commit is contained in:
Matt Dunn-Rankin 2020-04-25 23:21:37 -07:00
parent 441f6550db
commit c0790b11c7

View file

@ -55,8 +55,12 @@ export function Item({ item, itemNameId, outfitState, dispatchToOutfit }) {
.item-container:hover &,
input:focus + .item-container & {
opacity: 1;
color: ${theme.colors.gray["800"]};
backgroundcolor: ${theme.colors.gray["200"]};
}
&:focus,
&:hover {
background-color: ${theme.colors.gray["300"]};
color: ${theme.colors.gray["700"]};
}
`}
/>