Removes percentage paddings on mobile

This commit is contained in:
Ezekiel Aquino
2018-12-10 12:14:25 +01:00
parent a1889e2a23
commit c686c241c0

View File

@@ -39,10 +39,6 @@ export const Button = styled.button<ButtonInterface>`
path {
fill: ${props => props.color || props.theme.textColor};
}
@media (max-width: 768px) {
padding: ${props => !props.isNoPadding && '6% 10%'};
}
`;
export const Link = (props: ButtonInterface) => {