Skip to content
This repository has been archived by the owner on Mar 9, 2021. It is now read-only.

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
KirankumarAmbati committed Nov 26, 2019
1 parent 8526c9e commit 9b92e02
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion utils/base.styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,15 @@ export const Button = styled.a`
color: ${props => (props.inverted ? '#fff' : props.ghost ? purpleSecondary : '#222')};
padding: ${props =>
props.large ? '0.8rem 2.25rem' : props.medium ? '0.6rem 1.2rem' : props.small ? '0.3rem 1.1rem' : '0.2rem 1rem'};
font-size: ${props => (props.large ? '1.8rem' : props.medium ? '1rem' : '0.8rem')};
${breakpoints.lg} {
font-size: 1.8rem;
}
${breakpoints.md} {
font-size: 1rem;
}
${breakpoints.sm} {
font-size: 0.8rem;
}
font-weight: ${props => (props.ghost ? 600 : 500)};
border: ${props => (props.ghost ? `2px solid ${purpleSecondary}` : 'none')};
cursor: pointer;
Expand Down

0 comments on commit 9b92e02

Please sign in to comment.