Skip to content

Commit

Permalink
HealthSelector: use lighter background so the trigger is more visible
Browse files Browse the repository at this point in the history
  • Loading branch information
alexis-ld authored and ChengYanJin committed Feb 17, 2021
1 parent 2c243cc commit b7ca2a0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/lib/components/healthselector/Healthselector.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ const ThreeCirclesWrapper = styled.span`

const TriggerStyled = styled(ButtonStyled)`
box-sizing: border-box;
background-color: ${getThemePropSelector('primary')};
background-color: ${getThemePropSelector('border')};
color: ${getThemePropSelector('textPrimary')};
&:hover {
background-color: ${getThemePropSelector('primaryDark2')};
background-color: ${getThemePropSelector("secondaryDark1")};
}
&:active {
background-color: ${getThemePropSelector('primaryDark2')};
background-color: ${getThemePropSelector("secondaryDark1")};
}
border-radius: 4px;
Expand Down Expand Up @@ -210,13 +210,13 @@ const HealthSelectorMenuItem = styled.li`
justify-content: space-around;
${css`
background-color: ${getThemePropSelector('primary')};
background-color: ${getThemePropSelector('border')};
color: ${getThemePropSelector('textPrimary')};
&:hover {
background-color: ${getThemePropSelector('primaryDark2')};
background-color: ${getThemePropSelector("secondaryDark1")};
}
&:active {
background-color: ${getThemePropSelector('primaryDark2')};
background-color: ${getThemePropSelector("secondaryDark1")};
}
`};
`;
Expand Down

0 comments on commit b7ca2a0

Please sign in to comment.