Subtle styling adjustments to dropdown menus

This commit is contained in:
Tom Moor
2020-06-22 21:18:43 -07:00
parent 8db0260a1a
commit bf5f83e97d
2 changed files with 11 additions and 5 deletions

View File

@ -75,6 +75,12 @@ const MenuItem = styled.a`
fill: ${props.theme.white};
}
}
&:focus {
color: ${props.theme.white};
background: ${props.theme.primary};
outline: none;
}
`};
`;