Meriadec Pillet
7 years ago
committed by
GitHub
2 changed files with 34 additions and 2 deletions
@ -0,0 +1,18 @@ |
|||
import styled from 'styled-components' |
|||
import Box from 'components/base/Box' |
|||
|
|||
import { darken, lighten } from 'styles/helpers' |
|||
|
|||
export default styled(Box).attrs({ |
|||
cursor: 'pointer', |
|||
color: 'wallet', |
|||
})` |
|||
&:hover { |
|||
text-decoration: underline; |
|||
color: ${p => lighten(p.theme.colors.wallet, 0.05)}; |
|||
} |
|||
|
|||
&:active { |
|||
color: ${p => darken(p.theme.colors.wallet, 0.1)}; |
|||
} |
|||
` |
Loading…
Reference in new issue