1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-10 21:30: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;
margin: 0;
padding: ${remcalc('14 16')};
padding: ${remcalc(14)} ${remcalc(16)};
position: relative;
font-size: ${remcalc(16)};
@ -147,12 +147,12 @@ const StyledButton = styled.button`
`;
const StyledAnchor = styled.a`
display: inline-block !important;
display: inline-block;
${style}
`;
const StyledLink = styled(Link)`
display: inline-block !important;
display: inline-block;
${style}
`;