hide vscode btn on mobile

This commit is contained in:
AykutSarac 2022-09-27 12:54:49 +03:00
parent 507e3a8f32
commit ca0bb8b32c

View File

@ -143,6 +143,10 @@ export const StyledSponsorButton = styled(StyledButton)<{ isBlue?: boolean }>`
color: white;
}
}
@media only screen and (max-width: 768px) {
display: ${({ isBlue }) => isBlue && "none"};
}
`;
export const StyledFeaturesSection = styled.section`