button tweaks

This commit is contained in:
August Skare
2018-10-30 08:39:24 +01:00
parent 5cb944fe1b
commit 4616d6f59d

View File

@@ -13,7 +13,6 @@ const Button =
ButtonProps >
`
font-family: inherit;
font-size: ${props => (props.large ? '1rem' : '.875rem')};
line-height: 1;
font-weight: 500;
white-space: nowrap;
@@ -22,20 +21,28 @@ const Button =
color: ${colors.black};
border: 0;
border-radius: 5rem;
height: ${props => (props.large ? '3.25rem' : '2rem')};
padding: ${props => (props.large ? '0 2.375rem' : '0 1.25rem')};
display: inline-flex;
justify-content: space-between;
align-items: center;
${props =>
props.large
? `
font-size: 1rem;
padding: 1.1875rem 2.375rem 1.0625rem;
`
: `
font-size: .875rem;
padding: .5625rem 1.25rem;
`}
:hover, :focus {
background-color: ${props => props.colors.secondary_alt};
}
${props =>
props.large &&
media.small`
${media.small`
font-size: .875rem;
height: 2rem;
padding: 0 1.25rem;
padding: .5625rem 1.25rem;
`}
`;