chore: clean up home screen

This commit is contained in:
Kyle Gill
2019-04-29 15:07:25 -06:00
parent 07cf827c39
commit a54584e04b
6 changed files with 42 additions and 31 deletions

View File

@@ -33,28 +33,28 @@ export const Input = styled.input`
export const Button = styled.button`
display: inline;
background-color: ${props => props.colors.headerBackground};
background-color: ${props => props.colors.primary};
padding: 12px 50px;
min-height: 45px;
border-radius: 5px;
border: 0px solid;
border-color: ${props => props.colors.quarternary};
color: ${props => props.colors.secondary};
font-size: ${SIZES.normal};
color: ${props => props.colors.quarternary};
font-size: ${props => SIZES[props.fontSize || "normal"]};
font-weight: 700;
outline: none;
&:hover {
cursor: pointer;
background-color: ${props => props.colors.hover};
background-color: ${props => props.colors.secondary};
}
&:focus {
box-shadow: 0 0 0 3px ${props => props.colors.bodyBackground},
0 0 0 5px ${props => props.colors.hover};
0 0 0 5px ${props => props.colors.secondary};
}
`
export const P = styled.p`
color: ${props => props.colors.secondary};
color: ${props => props.theme.colors.secondary};
`
export const StyledLink = withTheme(styled(Link)`