diff --git a/app/components/Breadcrumb.js b/app/components/Breadcrumb.js index 08cc104e7..f567a75ef 100644 --- a/app/components/Breadcrumb.js +++ b/app/components/Breadcrumb.js @@ -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}; } `;