chore: clean up home screen
This commit is contained in:
@@ -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)`
|
||||
|
||||
Reference in New Issue
Block a user