1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-13 06:40:06 +02:00

fixing button padding

This commit is contained in:
Alex Windett 2017-02-20 16:15:36 +00:00
parent 7d0ee71504
commit aee48ae24b

View File

@ -80,7 +80,7 @@ const style = css`
align-items: center; align-items: center;
margin: 0; margin: 0;
padding: ${remcalc('14 16')}; padding: ${remcalc(14)} ${remcalc(16)};
position: relative; position: relative;
font-size: ${remcalc(16)}; font-size: ${remcalc(16)};
@ -147,12 +147,12 @@ const StyledButton = styled.button`
`; `;
const StyledAnchor = styled.a` const StyledAnchor = styled.a`
display: inline-block !important; display: inline-block;
${style} ${style}
`; `;
const StyledLink = styled(Link)` const StyledLink = styled(Link)`
display: inline-block !important; display: inline-block;
${style} ${style}
`; `;