Skip to content

Commit

Permalink
Small chart cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
plondon committed May 13, 2019
1 parent aad37e2 commit 3cdc5b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const Success = props => {
<Wrapper>
<Text
size='36px'
weight={500}
weight={400}
color='brand-primary'
data-e2e={props['data-e2e']}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ const FilterContainer = styled(Text).attrs({
props.selected ? props.theme['white'] : props.theme['lightblue-gray']};
border: ${props =>
props.selected
? `2px solid ${props.theme['brand-secondary']}`
: `2px solid ${props.theme['lightblue-gray']}`};
? `1px solid ${props.theme['brand-secondary']}`
: `1px solid ${props.theme['lightblue-gray']}`};
background: ${props =>
props.selected ? props.theme['brand-secondary'] : props.theme['white']};
letter-spacing: 1px;
Expand All @@ -35,7 +35,7 @@ const FilterContainer = styled(Text).attrs({
transition: color 0.3s, border 0.3s, background 0.3s;
&:hover {
color: ${props => !props.selected && props.theme['brand-secondary']};
border: ${props => `2px solid ${props.theme['brand-secondary']}`};
border: ${props => `1px solid ${props.theme['brand-secondary']}`};
}
`

Expand Down

0 comments on commit 3cdc5b2

Please sign in to comment.