Fix link hover color

Signed-off-by: Lucian <lucian.buzzo@gmail.com>
This commit is contained in:
Lucian 2019-12-04 12:58:31 +00:00 committed by Lorenzo Alberto Maria Ambrosi
parent b6fb44d6a5
commit a7a7f83e3e
2 changed files with 10 additions and 6 deletions

View File

@ -79,11 +79,14 @@ exports.ChangeButton = styled(BaseButton) `
padding: 0;
width: 100%;
height: auto;
${space}
&:enabled {
&:hover, &:focus, &:active {
color: ${colors.primary.background};
color: #8f9297;
}
}
${space}
`
exports.StepNameButton = styled(BaseButton) `
display: flex;
@ -93,8 +96,10 @@ exports.StepNameButton = styled(BaseButton) `
font-weight: bold;
color: ${colors.dark.foreground};
&:enabled {
&:hover, &:focus, &:active{
color: ${colors.primary.foreground};
color: #8f9297;
}
}
`
exports.StepSelection = styled(Flex) `

View File

@ -15,7 +15,6 @@
*/
'use strict'
exports.colors = {
dark: {
foreground: '#fff',