fix: Mobile menu toggle button appearing in print media, closes #377

This commit is contained in:
Tom Moor
2021-02-02 20:57:08 -08:00
parent 8ff2f41068
commit fb0b38fb71

View File

@ -188,6 +188,10 @@ const MobileMenuButton = styled(Button)`
${breakpoint("tablet")`
display: none;
`};
@media print {
display: none;
}
`;
const Content = styled(Flex)`