fix: Breadcrumb overflow color is inaccessible

closes #1505
This commit is contained in:
Tom Moor 2020-09-04 12:49:20 -07:00
parent 9049785d98
commit a98e8ad8df
1 changed files with 4 additions and 4 deletions

View File

@ -127,12 +127,12 @@ export const Slash = styled(GoToIcon)`
const Overflow = styled(MoreIcon)`
flex-shrink: 0;
opacity: 0.25;
transition: opacity 100ms ease-in-out;
fill: ${(props) => props.theme.divider};
&:hover,
&:active {
opacity: 1;
&:active,
&:hover {
fill: ${(props) => props.theme.text};
}
`;